From 4ab443f5c669004ccb04c8a48b6f8d13df73658f Mon Sep 17 00:00:00 2001 From: Willy Sudiarto Raharjo Date: Mon, 28 Mar 2016 08:32:50 +0700 Subject: development/tcc: Fix build. Thanks to Ryan McQuen for reporting. Signed-off-by: Willy Sudiarto Raharjo --- development/tcc/tcc.SlackBuild | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) (limited to 'development/tcc') 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 -- cgit v1.2.3