about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--pkgs/stdenv/generic/setup.sh5
-rw-r--r--pkgs/tools/compression/bzip2/builder.sh10
2 files changed, 3 insertions, 12 deletions
diff --git a/pkgs/stdenv/generic/setup.sh b/pkgs/stdenv/generic/setup.sh
index 216205f4f764f..eb78968702cc6 100644
--- a/pkgs/stdenv/generic/setup.sh
+++ b/pkgs/stdenv/generic/setup.sh
@@ -535,8 +535,9 @@ checkPhase() {
 
 patchELF() {
     # Patch all ELF executables and shared libraries.
-    header "patching ELF executables and libraries"
-    find "$prefix" \( -name "*.so*" -o \
+    header "patching ELF executables and libraries (BLA)"
+    find "$prefix" \( \
+        \( -type f -a -name "*.so*" \) -o \
         \( -type f -a -perm +0100 \) \
         \) -exec patchelf --shrink-rpath {} \;
     stopNest
diff --git a/pkgs/tools/compression/bzip2/builder.sh b/pkgs/tools/compression/bzip2/builder.sh
index 00deff9e2c07f..c88724f2d21b2 100644
--- a/pkgs/tools/compression/bzip2/builder.sh
+++ b/pkgs/tools/compression/bzip2/builder.sh
@@ -6,16 +6,6 @@ preBuild() {
     make -f Makefile-libbz2_so
 }
 
-patchELF() {
-    # Patch all ELF executables and shared libraries.
-    header "patching ELF executables and libraries (BLA)"
-    find "$prefix" \( \
-        \( -type f -a -name "*.so*" \) -o \
-        \( -type f -a -perm +0100 \) \
-        \) -exec patchelf --shrink-rpath {} \;
-    stopNest
-}
-
 preInstall=preInstall
 preInstall() {
     ensureDir $out/lib