diff options
-rw-r--r-- | network/cmst/cmst.SlackBuild | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/network/cmst/cmst.SlackBuild b/network/cmst/cmst.SlackBuild index ee4b9b5b8aee..67aa21ee40d9 100644 --- a/network/cmst/cmst.SlackBuild +++ b/network/cmst/cmst.SlackBuild @@ -59,11 +59,16 @@ set -e rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP -rm -rf ${PRGNAM}-$VERSION +rm -rf ${PRGNAM} tar xvf $CWD/${PRGNAM}-$VERSION.tar.gz - # The original tar.gz file don't have the version in the folder. cd ${PRGNAM} +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 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; export CFLAGS="$SLKCFLAGS" export CXXFLAGS="$SLKCFLAGS" |