summaryrefslogtreecommitdiffstats
path: root/development/tcc
diff options
context:
space:
mode:
author Willy Sudiarto Raharjo <willysr@slackbuilds.org>2016-03-28 08:32:50 +0700
committer David Spencer <idlemoor@slackbuilds.org>2016-03-31 12:49:19 +0100
commit4ab443f5c669004ccb04c8a48b6f8d13df73658f (patch)
treeb15c1252582fd071caa334dc346c341f8d01f81e /development/tcc
parent54cc36021813ec32604c41311516bc2053096b69 (diff)
downloadslackbuilds-4ab443f5c669004ccb04c8a48b6f8d13df73658f.tar.gz
slackbuilds-4ab443f5c669004ccb04c8a48b6f8d13df73658f.tar.xz
development/tcc: Fix build.
Thanks to Ryan McQuen for reporting. Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/tcc')
-rw-r--r--development/tcc/tcc.SlackBuild19
1 files changed, 11 insertions, 8 deletions
diff --git a/development/tcc/tcc.SlackBuild b/development/tcc/tcc.SlackBuild
index 9668594759..659ea378a0 100644
--- a/development/tcc/tcc.SlackBuild
+++ b/development/tcc/tcc.SlackBuild
@@ -68,10 +68,10 @@ tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2
cd $PRGNAM-$VERSION
chown -R root:root .
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 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
- -exec chmod 644 {} \;
+ \( -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 {} \;
if [ "$CROSS" = "yes" ]; then
OPT="--enable-cross"
@@ -88,13 +88,16 @@ CFLAGS=$SLKCFLAGS \
--sharedir=/usr $OPT
make
-make test
make install DESTDIR=$PKG
-find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
+find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
-gzip -9 $PKG/usr/man/man1/*.1
-gzip -9 $PKG/usr/info/*.info
+
+find $PKG/usr/man -type f -exec gzip -9 {} \;
+for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
+
+rm -f $PKG/usr/info/dir
+gzip -9 $PKG/usr/info/*.info*
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION