gnu mig: Remove crossAttrs

This commit is contained in:
John Ericson 2018-07-23 17:09:06 -04:00
parent 40c33cbd4e
commit 66c41943b3

View File

@ -21,13 +21,11 @@ stdenv.mkDerivation {
doCheck = true; doCheck = true;
crossAttrs = { # Fix the shebang to point to the cross-built shell. Won't be needed
postInstall = # after #43833.
# Fix the shebang to point to the cross-built shell. postInstall = ''
'' sed -i "$out/bin/mig" \ sed -i "$out/bin/mig" -e 's|^#!/.*|#!${bash}/bin/sh|g'
-e 's|^#!/.*|#!${bash.crossDrv}/bin/sh|g' '';
'';
};
meta = { meta = {
description = "GNU MIG, the Mach interface generator"; description = "GNU MIG, the Mach interface generator";