diff options
author | Thierry Reding <[email protected]> | 2007-01-08 13:36:16 +0100 |
---|---|---|
committer | Thierry Reding <[email protected]> | 2007-01-08 13:36:16 +0100 |
commit | 4563723db1e24fe94f827783b6759586d05ff1db (patch) | |
tree | 1b4ecc519684c8990d1d5b53fc275ac2e7cfeda4 /debian/scripts | |
parent | 0bce6a189938b37489269c2a375274613f799c50 (diff) |
Make sure all files in the mesa-swx11-source package have permissions 0644.
Diffstat (limited to 'debian/scripts')
-rwxr-xr-x | debian/scripts/install-source.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/debian/scripts/install-source.sh b/debian/scripts/install-source.sh index f8c92134888..bc0bcd5e34d 100755 --- a/debian/scripts/install-source.sh +++ b/debian/scripts/install-source.sh @@ -41,3 +41,6 @@ TARGET=${TOP}/debian/tmp/usr/share/mesa-source cp -lf "$x" "$TARGET/$DIRNAME" done +# fix permissions +find "$TARGET" -type f | xargs chmod 0644 + |