netbsd: fix links installer

This commit is contained in:
Matthew Bauer 2018-04-27 01:59:36 +00:00
parent 968e8a1099
commit ddc23593e1

View File

@ -280,6 +280,9 @@ let
--replace '-o ''${DEBUGOWN} -g ''${DEBUGGRP}' "" --replace '-o ''${DEBUGOWN} -g ''${DEBUGGRP}' ""
substituteInPlace $NETBSDSRCDIR/share/mk/bsd.doc.mk \ substituteInPlace $NETBSDSRCDIR/share/mk/bsd.doc.mk \
--replace '-o ''${DOCOWN} -g ''${DOCGRP}' "" --replace '-o ''${DOCOWN} -g ''${DOCGRP}' ""
substituteInPlace $NETBSDSRCDIR/share/mk/bsd.links.mk \
--replace '-o ''${LINKSOWN_''${.ALLSRC:T}:U''${LINKSOWN}}' "" \
--replace '-g ''${LINKSGRP_''${.ALLSRC:T}:U''${LINKSGRP}}' ""
substituteInPlace $NETBSDSRCDIR/share/mk/bsd.man.mk \ substituteInPlace $NETBSDSRCDIR/share/mk/bsd.man.mk \
--replace '-o ''${MANOWN} -g ''${MANGRP}' "" --replace '-o ''${MANOWN} -g ''${MANGRP}' ""
substituteInPlace $NETBSDSRCDIR/share/mk/bsd.files.mk \ substituteInPlace $NETBSDSRCDIR/share/mk/bsd.files.mk \
@ -338,6 +341,7 @@ in rec {
patchPhase = '' patchPhase = ''
sed -i '1i #include <time.h>' adventure/save.c sed -i '1i #include <time.h>' adventure/save.c
''; '';
buildInputs = [ compat libcurses ];
}; };
who = netBSDDerivation { who = netBSDDerivation {