diff options
author | Andrew Pollock <apollock@icarus.andrew.net.au> | 2009-06-16 23:38:08 -0700 |
---|---|---|
committer | Andrew Pollock <apollock@icarus.andrew.net.au> | 2009-06-16 23:38:08 -0700 |
commit | 8514fa4596c714597c398b4dec5a64d73e096313 (patch) | |
tree | 718fe450db1dc6d24e6e01e02b0795cdcdd665de /debian/rules | |
parent | 37cc8b75cbd2bc8d06177381617543b862a2dcc3 (diff) | |
download | puppet-debian/0.24.8-2.tar.gz |
Ensure the permissions on everything under /usr/lib/ruby/1.8 are correctdebian/0.24.8-2
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules index ee690624e..ab08c2ba8 100755 --- a/debian/rules +++ b/debian/rules @@ -51,6 +51,8 @@ install: build # strip executable bit from all the non-executable files. find debian/tmp/usr/lib/ruby/1.8 -type f -perm /u+x,g+x,o+x -exec chmod a-x {} \; + # fix the permissions on all of the directories + find debian/tmp/usr/lib/ruby/1.8 -type d -exec chmod 755 {} \; # Vim auto-syntax-highlighting stuff $(INSTALL) -m0644 ext/vim/syntax/puppet.vim \ |