summaryrefslogtreecommitdiffstats
path: root/development/nqp
diff options
context:
space:
mode:
author Willy Sudiarto Raharjo <willysr@slackbuilds.org>2013-11-16 07:35:31 +0700
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2013-11-16 07:35:31 +0700
commit71cb79284f79ec8ab075e60b0bb4320eda547917 (patch)
tree4232a64fe2366bc507ebba4e066ba016f74a863a /development/nqp
parent3d04ca09811ca09ceff5357417db63dff3733836 (diff)
downloadslackbuilds-71cb79284f79ec8ab075e60b0bb4320eda547917.tar.gz
slackbuilds-71cb79284f79ec8ab075e60b0bb4320eda547917.tar.xz
development/nqp: Force using -j1
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/nqp')
-rw-r--r--development/nqp/nqp.SlackBuild14
1 files changed, 6 insertions, 8 deletions
diff --git a/development/nqp/nqp.SlackBuild b/development/nqp/nqp.SlackBuild
index da992e1973..8e4078c23d 100644
--- a/development/nqp/nqp.SlackBuild
+++ b/development/nqp/nqp.SlackBuild
@@ -8,12 +8,10 @@ VERSION=${VERSION:-2013.05}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
-# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i486 ;;
arm*) ARCH=arm ;;
- # Unless $ARCH is already set, use uname -m for all other archs:
*) ARCH=$( uname -m ) ;;
esac
fi
@@ -47,17 +45,17 @@ rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
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 {} \;
perl Configure.pl \
--prefix=/usr \
--with-parrot=/usr/bin/parrot
-make
+make -j1
make DESTDIR=$PKG install
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION