mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-10 16:56:03 +02:00
os x dmg: fixed setting executable bit
git-svn-id: trunk@44237 -
This commit is contained in:
parent
355e83cf62
commit
96af3a4213
@ -171,7 +171,8 @@ 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 {} \;
|
||||
# Note: OS X does not understand /o+x
|
||||
find $BUILDDIR -perm +0001 -exec chmod a+x {} \;
|
||||
# everyone can access directories
|
||||
find $BUILDDIR -type d -exec chmod a+x {} \;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user