mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-25 03:59:31 +02:00
fpcsrc deb: fix for filenames with spaces
git-svn-id: trunk@22486 -
This commit is contained in:
parent
6c561c5788
commit
c18d7be9ac
@ -331,8 +331,8 @@ fi
|
||||
|
||||
# fixing permissions
|
||||
echo "fixing permissions ..."
|
||||
find $FPCBuildDir -type d | xargs chmod 755 # this is needed, don't ask me why
|
||||
find $FPCBuildDir -type f | xargs chmod a+r # this is needed, don't ask me why
|
||||
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
|
||||
|
||||
#------------------------------------------------------------------------------
|
||||
# creating deb
|
||||
|
@ -162,7 +162,7 @@ chmod 644 $LazBuildDir/etc/lazarus/*.xml
|
||||
|
||||
# fixing permissions
|
||||
echo "fixing permissions ..."
|
||||
find $LazBuildDir -type d | xargs chmod 755 # this is needed, don't ask me why
|
||||
find $LazBuildDir -type d | xargs -d '\n' chmod 755 # this is needed, don't ask me why
|
||||
|
||||
# postinst + postrm:
|
||||
# ToDo: update-mime-database /usr/share/mime
|
||||
|
Loading…
Reference in New Issue
Block a user