scripts: Replaced deprecated find parameters form

git-svn-id: trunk@43899 -
This commit is contained in:
mattias 2014-02-05 12:07:21 +00:00
parent ad00d3a188
commit adfdf3126d
3 changed files with 3 additions and 3 deletions

View File

@ -53,7 +53,7 @@ find . -name "CVS" -exec rm -rf {} \;
# delete all .svn directories
find . -name ".svn" -exec rm -rf {} \;
# delete all executables
find . -perm +a+x -type f -exec rm -f {} \;
find . -perm /a+x -type f -exec rm -f {} \;
cd -
# end.

View File

@ -55,7 +55,7 @@ find . -name "CVS" -exec rm -rf {} \;
# delete all SVN directories
find . -name ".svn" -exec rm -rf {} \;
# delete all executables
find . -perm +a+x -type f -exec rm -f {} \;
find . -perm /a+x -type f -exec rm -f {} \;
rm -rf tools/install/*.tgz
rm -rf tools/install/*.*.spec
cd -

View File

@ -168,7 +168,7 @@ ln -s /Developer/lazarus/lazarus.app $ROOTDIR/Applications/Lazarus.app
# everyone can read, group can write
find $BUILDDIR -exec chmod a+r,g+w {} \;
# what is executable should be executable by everyone
find $BUILDDIR -perm +o+x -exec chmod a+x {} \;
find $BUILDDIR -perm /o+x -exec chmod a+x {} \;
# everyone can access directories
find $BUILDDIR -type d -exec chmod a+x {} \;