summaryrefslogtreecommitdiffstats
path: root/development/pcc
diff options
context:
space:
mode:
author Willy Sudiarto Raharjo <willysr@slackbuilds.org>2013-11-16 07:36:55 +0700
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2013-11-16 07:36:55 +0700
commitc535c7fc5977d0f98bced42b3e5ae12e27237b43 (patch)
treee5e384fa0117762d51bf828a78616bc2d27f6523 /development/pcc
parent71cb79284f79ec8ab075e60b0bb4320eda547917 (diff)
downloadslackbuilds-c535c7fc5977d0f98bced42b3e5ae12e27237b43.tar.gz
slackbuilds-c535c7fc5977d0f98bced42b3e5ae12e27237b43.tar.xz
development/pcc: Force using -j1
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/pcc')
-rw-r--r--development/pcc/pcc.SlackBuild12
1 files changed, 6 insertions, 6 deletions
diff --git a/development/pcc/pcc.SlackBuild b/development/pcc/pcc.SlackBuild
index 01f5f4bf37..3c7ad85e87 100644
--- a/development/pcc/pcc.SlackBuild
+++ b/development/pcc/pcc.SlackBuild
@@ -44,11 +44,11 @@ rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$VERSION.tgz
cd $PRGNAM-$VERSION
chown -R root:root .
-find . \
- \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
- -exec chmod 755 {} \; -o \
- \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
- -exec chmod 644 {} \;
+find -L . \
+ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
+ -o -perm 511 \) -exec chmod 755 {} \; -o \
+ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
+ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
@@ -58,7 +58,7 @@ CXXFLAGS="$SLKCFLAGS" \
--libdir=/usr/lib${LIBDIRSUFFIX} \
--build=$ARCH-slackware-linux
-make
+make -j1
make install DESTDIR=$PKG
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \