Merge pull request #89367 from neilmayhew/fix/multipath-tools-gzip

multipath-tools: Fix build failure due to GZIP make var
This commit is contained in:
Maximilian Bosch
2020-06-02 18:36:16 +02:00
committed by GitHub
@@ -17,8 +17,8 @@ stdenv.mkDerivation rec {
' libmultipath/defaults.h ' libmultipath/defaults.h
sed -i -e 's,\$(DESTDIR)/\(usr/\)\?,$(prefix)/,g' \ sed -i -e 's,\$(DESTDIR)/\(usr/\)\?,$(prefix)/,g' \
kpartx/Makefile libmpathpersist/Makefile kpartx/Makefile libmpathpersist/Makefile
sed -i -e "s,GZIP = .*, GZIP = gzip -9n -c," \ sed -i -e "s,GZIP,GZ," \
Makefile.inc $(find * -name Makefile\*)
''; '';
nativeBuildInputs = [ gzip pkgconfig perl ]; nativeBuildInputs = [ gzip pkgconfig perl ];