diff options
Diffstat (limited to 'libraries/libskk/libskk.SlackBuild')
-rw-r--r-- | libraries/libskk/libskk.SlackBuild | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/libraries/libskk/libskk.SlackBuild b/libraries/libskk/libskk.SlackBuild index 7102c965ac..d08fcf1d20 100644 --- a/libraries/libskk/libskk.SlackBuild +++ b/libraries/libskk/libskk.SlackBuild @@ -24,7 +24,7 @@ # Revision date: 2013/03/27 PRGNAM=libskk -VERSION=${VERSION:-1.0.0} +VERSION=${VERSION:-1.0.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -64,9 +64,13 @@ rm -rf $PRGNAM-$VERSION tar xvf $CWD/$VERSION.tar.gz || tar xvf $CWD/$PRGNAM-$VERSION.tar.gz cd $PRGNAM-$VERSION chown -R root:root . -chmod -R u+w,go+r-w,a-s . -./autogen.sh +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 {} \; +./autogen.sh CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ |