diff options
| author | perry <perry@NetBSD.org> | 2001-11-19 04:47:42 +0000 |
|---|---|---|
| committer | perry <perry@NetBSD.org> | 2001-11-19 04:47:42 +0000 |
| commit | 184d8eecad17c54ae50ecd16dfd47129bf746bbb (patch) | |
| tree | 9736987bbdee2645495a2c44231ad2aff69add2b /tools/groff | |
| parent | 550b1df8d65135e03ece6b9d695dfdf465ade9a9 (diff) | |
replace instances of INSTALL_FILE with HOST_INSTALL_FILE
Diffstat (limited to 'tools/groff')
| -rw-r--r-- | tools/groff/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/groff/Makefile b/tools/groff/Makefile index 609e53484ee..41f224c974d 100644 --- a/tools/groff/Makefile +++ b/tools/groff/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2001/11/14 22:13:40 tv Exp $ +# $NetBSD: Makefile,v 1.5 2001/11/19 04:47:43 perry Exp $ MODULE= groff @@ -21,17 +21,17 @@ afterinstall: ${TMACDIR}/tmac.${F} ${TMACDIR}/tmac.${F}: ${F} .if defined(UPDATE) @if ! cmp ${.ALLSRC} ${.TARGET} 2>/dev/null; then \ - echo ${INSTALL_FILE:N-U:Q} -m ${NONBINMODE} ${.ALLSRC} ${.TARGET}; \ - ${INSTALL_FILE:N-U} -m ${NONBINMODE} ${.ALLSRC} ${.TARGET}; \ + echo ${HOST_INSTALL_FILE:Q} -m ${NONBINMODE} ${.ALLSRC} ${.TARGET}; \ + ${HOST_INSTALL_FILE} -m ${NONBINMODE} ${.ALLSRC} ${.TARGET}; \ fi .else - ${INSTALL_FILE:N-U} -m ${NONBINMODE} ${.ALLSRC} ${.TARGET} + ${HOST_INSTALL_FILE} -m ${NONBINMODE} ${.ALLSRC} ${.TARGET} .endif .endfor afterinstall: ${TMACDIR}/tmac.an ${TMACDIR}/tmac.an: ${TMACDIR}/tmac.andoc - ${INSTALL_FILE:N-U} -m ${NONBINMODE} ${.ALLSRC} ${.TARGET} + ${HOST_INSTALL_FILE} -m ${NONBINMODE} ${.ALLSRC} ${.TARGET} .for F in eqn groff indxbib pic refer soelim tbl afterinstall: ${TOOLDIR}/bin/nb${F} |
