mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
syslinux: fix invalid use of substituteInPlace
substituteInPlace was invoked with multiple targets on the command line, which is not supported.
This commit is contained in:
parent
9aa4f09008
commit
bec5797290
@ -30,7 +30,8 @@ stdenv.mkDerivation rec {
|
||||
preBuild = ''
|
||||
substituteInPlace Makefile --replace /bin/pwd $(type -P pwd)
|
||||
substituteInPlace gpxe/src/Makefile.housekeeping --replace /bin/echo $(type -P echo)
|
||||
substituteInPlace utils/ppmtolss16 gpxe/src/Makefile --replace /usr/bin/perl $(type -P perl)
|
||||
substituteInPlace utils/ppmtolss16 --replace /usr/bin/perl $(type -P perl)
|
||||
substituteInPlace gpxe/src/Makefile --replace /usr/bin/perl $(type -P perl)
|
||||
'';
|
||||
|
||||
stripDebugList = "bin sbin share/syslinux/com32";
|
||||
|
Loading…
Reference in New Issue
Block a user