diff options
Diffstat (limited to 'source/l/boost/boost.SlackBuild')
-rwxr-xr-x | source/l/boost/boost.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/l/boost/boost.SlackBuild b/source/l/boost/boost.SlackBuild index a17cbdbf..af1870be 100755 --- a/source/l/boost/boost.SlackBuild +++ b/source/l/boost/boost.SlackBuild @@ -88,9 +88,9 @@ cd boost_$VERSION || exit 1 chown -R root:root . find . \ \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ - -exec chmod 755 {} \; -o \ + -exec chmod 755 {} \+ -o \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; + -exec chmod 644 {} \+ # First build bjam, the boost build system: ./bootstrap.sh \ @@ -188,7 +188,7 @@ find $PKG | xargs file | grep -e "executable" -e "shared object" \ mkdir -p $PKG/usr/doc/boost-$PKG_VERSION # Do not copy 44MB of developer 'doc/html' into our package... cp -a LICENSE* index.html $PKG/usr/doc/boost-$PKG_VERSION -find $PKG/usr/doc -type f -exec chmod 0644 {} \; +find $PKG/usr/doc -type f -exec chmod 0644 {} \+ mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc |