/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to initramfs-tools-hook

  • Committer: Teddy Hogeborn
  • Date: 2009-02-07 03:28:24 UTC
  • Revision ID: teddy@fukt.bsnet.se-20090207032824-5eg756uscdr3gend
* initramfs-tools-hook: Also fix /lib<qual> and /usr/lib<qual>
                        directories.

Show diffs side-by-side

added added

removed removed

Lines of Context:
168
168
        chmod a+rX "${DESTDIR}$dir"
169
169
    fi
170
170
done
171
 
for dir in /lib /usr/lib; do
172
 
    find "${DESTDIR}$dir" \! -perm -u+rw,g+r -prune -or -print0 \
173
 
        | xargs --null --no-run-if-empty chmod a+rX
 
171
for dir in "${DESTDIR}"/lib* "${DESTDIR}"/usr/lib*; do
 
172
    if [ -d "$dir" ]; then
 
173
        find "$dir" \! -perm -u+rw,g+r -prune -or -print0 \
 
174
            | xargs --null --no-run-if-empty chmod a+rX
 
175
    fi
174
176
done