Merge pull request #43169 from samueldr/fix/stripDirs

Fixes `stripDirs` use after signature change
This commit is contained in:
Matthew Bauer
2018-07-14 19:07:46 -04:00
committed by GitHub
3 changed files with 3 additions and 3 deletions

View File

@@ -164,7 +164,7 @@ let
# Strip binaries further than normal.
chmod -R u+w $out
stripDirs "lib bin" "-s"
stripDirs "$STRIP" "lib bin" "-s"
# Run patchelf to make the programs refer to the copied libraries.
find $out/bin $out/lib -type f | while read i; do

View File

@@ -142,7 +142,7 @@ let
# FIXME: this is unnecessary once the multiple-outputs branch is merged.
preFixup = ''
prefix=$jre stripDirs "$stripDebugList" "''${stripDebugFlags:--S}"
prefix=$jre stripDirs "$STRIP" "$stripDebugList" "''${stripDebugFlags:--S}"
patchELF $jre
propagatedBuildInputs+=" $jre"

View File

@@ -206,7 +206,7 @@ let
# FIXME: this is unnecessary once the multiple-outputs branch is merged.
preFixup = ''
prefix=$jre stripDirs "$stripDebugList" "''${stripDebugFlags:--S}"
prefix=$jre stripDirs "$STRIP" "$stripDebugList" "''${stripDebugFlags:--S}"
patchELF $jre
propagatedBuildInputs+=" $jre"