diff options
author | Andreas Baumann <mail@andreasbaumann.cc> | 2019-08-02 17:17:07 +0200 |
---|---|---|
committer | Andreas Baumann <mail@andreasbaumann.cc> | 2019-08-02 17:17:07 +0200 |
commit | 665824173758809cc0010d8b6684b7f6b4e738bd (patch) | |
tree | d9a539d99ee79ae37ec5813c38097375b1d5aecc /core/libidn | |
parent | 181909b86791a0fd88ef2f317ecf7d8a989a6b0b (diff) | |
download | packages-665824173758809cc0010d8b6684b7f6b4e738bd.tar.xz |
core/libidn: temporary fix for FS#63334 (failing tests due to missing symbols
Diffstat (limited to 'core/libidn')
-rw-r--r-- | core/libidn/PKGBUILD | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/core/libidn/PKGBUILD b/core/libidn/PKGBUILD new file mode 100644 index 00000000..bb187f60 --- /dev/null +++ b/core/libidn/PKGBUILD @@ -0,0 +1,13 @@ +# hotfix for FS$63334 (test crashes due to too agressive symbol elimination) +eval "$( + declare -f build | \ + sed ' + /configure/ i \ + export LDFLAGS="-Wl,-O1,--sort-common,-z,relro,-z,now" + ' + declare -f check | \ + sed ' + /make/ i \ + export LDFLAGS="-Wl,-O1,--sort-common,-z,relro,-z,now" + ' +)" |