mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-11-02 19:19:40 +01:00
tools: create_fpc_deb.sh: handling spaces in file names
git-svn-id: trunk@26134 -
This commit is contained in:
parent
e792ed60eb
commit
bbec02be14
@ -331,8 +331,8 @@ fi
|
||||
|
||||
# fixing permissions
|
||||
echo "fixing permissions ..."
|
||||
find $FPCBuildDir -type d | xargs -d '\n' chmod 755 # this is needed, don't ask me why
|
||||
find $FPCBuildDir -type f | xargs -d '\n' chmod a+r # this is needed, don't ask me why
|
||||
find $FPCBuildDir -type d -print0 | xargs -0 chmod 755 # this is needed, don't ask me why
|
||||
find $FPCBuildDir -type f -print0 | xargs -0 chmod a+r # this is needed, don't ask me why
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
# creating deb
|
||||
|
||||
Loading…
Reference in New Issue
Block a user