nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

bind: Fix patching Makefile.in

There is no postPatchPhase.

authored by

Franz Pletz and committed by
Charles Strahan
0e07172c 4867d694

+13 -5
+1 -5
pkgs/servers/dns/bind/default.nix
··· 10 10 sha256 = "1w4gp4hdkb452nmz91l413d1rx89isl2l6wv8kpbdd2afpc3phws"; 11 11 }; 12 12 13 - postPatchPhase = '' 14 - sed -i 's/^\t.*run/\t/' Makefile.in 15 - ''; 16 - 17 - patches = [ ./libressl.patch ]; 13 + patches = [ ./libressl.patch ./remove-mkdir-var.patch ]; 18 14 19 15 buildInputs = [ openssl libtool perl libxml2 ]; 20 16
+12
pkgs/servers/dns/bind/remove-mkdir-var.patch
··· 1 + --- a/Makefile.in 2 + +++ b/Makefile.in 3 + @@ -53,8 +53,7 @@ docclean manclean maintainer-clean:: 4 + doc man:: ${MANOBJS} 5 + 6 + installdirs: 7 + - $(SHELL) ${top_srcdir}/mkinstalldirs ${DESTDIR}${bindir} \ 8 + - ${DESTDIR}${localstatedir}/run ${DESTDIR}${sysconfdir} 9 + + $(SHELL) ${top_srcdir}/mkinstalldirs ${DESTDIR}${bindir} ${DESTDIR}${sysconfdir} 10 + $(SHELL) ${top_srcdir}/mkinstalldirs ${DESTDIR}${mandir}/man1 11 + 12 + install:: isc-config.sh installdirs