mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 06:57:54 +02:00
scripts: Replaced deprecated find parameters form
git-svn-id: trunk@43899 -
This commit is contained in:
parent
ad00d3a188
commit
adfdf3126d
@ -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.
|
||||
|
@ -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 -
|
||||
|
@ -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 {} \;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user