diff options
author | Willy Sudiarto Raharjo <willysr@slackware-id.org> | 2013-11-06 07:58:53 +0700 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2013-11-05 20:25:19 -0600 |
commit | 6070b7088f7aba7f50f7615f418a4dfe9f007d6f (patch) | |
tree | 05414cdd34f85030c9840010ba6a15fc7ab03e1a /libraries/ctemplate | |
parent | 84e4d7efc7bc0195ee3eae2c6750e4bae37ee36c (diff) | |
download | slackbuilds-6070b7088f7aba7f50f7615f418a4dfe9f007d6f.tar.gz |
libraries/ctemplate: Update script to the new template
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackware-id.org>
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'libraries/ctemplate')
-rw-r--r-- | libraries/ctemplate/ctemplate.SlackBuild | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/libraries/ctemplate/ctemplate.SlackBuild b/libraries/ctemplate/ctemplate.SlackBuild index 231c44d4f0..860ec93d5e 100644 --- a/libraries/ctemplate/ctemplate.SlackBuild +++ b/libraries/ctemplate/ctemplate.SlackBuild @@ -27,12 +27,10 @@ VERSION=${VERSION:-2.2} 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 @@ -65,11 +63,11 @@ rm -rf $PRGNAM-$VERSION tar xvf $CWD/$PRGNAM-$VERSION.tar.gz cd $PRGNAM-$VERSION chown -R root:root . -find . \ +find -L . \ \( -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 {} \; + \( -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" \ |