diff options
author | Danny Rawlins <monster.romster@gmail.com> | 2013-07-26 23:20:37 +1000 |
---|---|---|
committer | Danny Rawlins <monster.romster@gmail.com> | 2013-07-26 23:20:37 +1000 |
commit | 462f86a17fa9d46f24c4e34e1c87619b646252cb (patch) | |
tree | 8eed971ceabc7a8163e7b3a4cfa82eb05d0e2f58 /nettle-32 | |
parent | 98e6e397818949e35fe6041e1cac36785dc9aadb (diff) | |
download | compat-32-462f86a17fa9d46f24c4e34e1c87619b646252cb.tar.gz compat-32-462f86a17fa9d46f24c4e34e1c87619b646252cb.tar.xz |
nettle-32: really fix errors
Diffstat (limited to 'nettle-32')
-rw-r--r-- | nettle-32/Pkgfile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/nettle-32/Pkgfile b/nettle-32/Pkgfile index f7273415..6332a076 100644 --- a/nettle-32/Pkgfile +++ b/nettle-32/Pkgfile @@ -5,15 +5,17 @@ name=nettle-32 version=2.7.1 -release=2 +release=3 source=(http://www.lysator.liu.se/~nisse/archive/nettle-$version.tar.gz) build() { cd nettle-$version - # make check requires - #export CC="gcc -m32" - # else it'll fail on /some/ tests + # do not remove this unless you check with + # make check and wine iexplore https://... + [ "$CC" ] || CC=gcc + export CC="$CC -m32" + # else it'll fail on /some/ tests and iexplore https # last tested on version 2.7.1 ./configure \ @@ -22,6 +24,7 @@ build() { --with-include-path=/usr/lib32/gmp make + #make check make DESTDIR=$PKG install rm -r $PKG/usr/{bin,include} |