* Update a bunch of base packages.

svn path=/nixpkgs/trunk/; revision=4065
This commit is contained in:
Eelco Dolstra
2005-10-11 14:29:30 +00:00
parent b5eb0b0b5f
commit 552de99c19
10 changed files with 24 additions and 24 deletions

View File

@@ -535,11 +535,11 @@ checkPhase() {
patchELF() {
# Patch all ELF executables and shared libraries.
header "patching ELF executables and libraries (BLA)"
header "patching ELF executables and libraries"
find "$prefix" \( \
\( -type f -a -name "*.so*" \) -o \
\( -type f -a -perm +0100 \) \
\) -exec patchelf --shrink-rpath {} \;
\) -print -exec patchelf --shrink-rpath {} \;
stopNest
}