summary refs log tree commit diff
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-07-14 19:07:46 -0400
committerGitHub <noreply@github.com>2018-07-14 19:07:46 -0400
commit19fc061a1363d54bcab0e11e9187f46425b5f763 (patch)
treeb3d7c2b6125118e0653e6884ff0136d2277e6881 /pkgs/development/compilers
parent5568c7c04b70f388bbcd412abc6f6e39ff1821c1 (diff)
parentf8790e0156dae0c04f922a172bfb9d9a7266c172 (diff)
downloadnixlib-19fc061a1363d54bcab0e11e9187f46425b5f763.tar
nixlib-19fc061a1363d54bcab0e11e9187f46425b5f763.tar.gz
nixlib-19fc061a1363d54bcab0e11e9187f46425b5f763.tar.bz2
nixlib-19fc061a1363d54bcab0e11e9187f46425b5f763.tar.lz
nixlib-19fc061a1363d54bcab0e11e9187f46425b5f763.tar.xz
nixlib-19fc061a1363d54bcab0e11e9187f46425b5f763.tar.zst
nixlib-19fc061a1363d54bcab0e11e9187f46425b5f763.zip
Merge pull request #43169 from samueldr/fix/stripDirs
Fixes `stripDirs` use after signature change
Diffstat (limited to 'pkgs/development/compilers')
-rw-r--r--pkgs/development/compilers/openjdk/10.nix2
-rw-r--r--pkgs/development/compilers/openjdk/8.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/compilers/openjdk/10.nix b/pkgs/development/compilers/openjdk/10.nix
index 2c76d59512b6..7ed493fe92e9 100644
--- a/pkgs/development/compilers/openjdk/10.nix
+++ b/pkgs/development/compilers/openjdk/10.nix
@@ -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"
 
diff --git a/pkgs/development/compilers/openjdk/8.nix b/pkgs/development/compilers/openjdk/8.nix
index 57771e383279..5b31bc18b8c2 100644
--- a/pkgs/development/compilers/openjdk/8.nix
+++ b/pkgs/development/compilers/openjdk/8.nix
@@ -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"