deb: less warnings

git-svn-id: branches/fixes_1_8@55232 -
This commit is contained in:
mattias 2017-06-05 07:37:43 +00:00
parent ba2963e9e0
commit 2f00ddbe1f

View File

@ -231,9 +231,9 @@ chmod 644 $LazBuildDir/etc/lazarus/*.xml
# fixing permissions
echo "fixing permissions ..."
find $LazBuildDir -type d | xargs -d '\n' chmod 755
find $LazBuildDir -perm 775 | xargs -d '\n' chmod 755 || true
find $LazBuildDir -perm 664 | xargs -d '\n' chmod 644 || true
find $LazBuildDir -type d -exec chmod 755 {} \;
find $LazBuildDir -perm 775 -exec chmod 755 {} \;
find $LazBuildDir -perm 664 -exec chmod 644 {} \;
# postinst + postrm:
# don't know