diff options
Diffstat (limited to 'system/sandbox/sandbox.SlackBuild')
-rw-r--r-- | system/sandbox/sandbox.SlackBuild | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/system/sandbox/sandbox.SlackBuild b/system/sandbox/sandbox.SlackBuild index 3f763f52e7..c53e008657 100644 --- a/system/sandbox/sandbox.SlackBuild +++ b/system/sandbox/sandbox.SlackBuild @@ -24,7 +24,7 @@ PRGNAM=sandbox VERSION=${VERSION:-2.13} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -69,11 +69,13 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; -# Fix build with slibtool -# https://bugs.gentoo.org/656184 -zcat $CWD/slibtool.patch.gz | patch -p1 +# Remove -nodefaultlibs to avoid compiler failures for 32-bit with slibtool. +# GNU libtool swallows anything not on their list of "known" linker flags. +# https://bugs.gentoo.org/657184 +patch -p1 < $CWD/slibtool.patch autoreconf -fi + CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ |