network/cmst: Fixed file ownership.

Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
David Spencer 2016-01-25 18:41:13 +00:00 committed by Willy Sudiarto Raharjo
parent 84b1edf00d
commit c87192a031

View file

@ -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"