diff options
author | agc <agc> | 1998-04-22 11:05:01 +0000 |
---|---|---|
committer | agc <agc> | 1998-04-22 11:05:01 +0000 |
commit | 85e71b358f29ed1f1eeef26ae6d1033c54e4217f (patch) | |
tree | 7c704a40be51eaf840514a005b30e0743cf59645 /mk | |
parent | fefaee8d82eb5cc271f5eb1b3dc1e9e43877e4a9 (diff) | |
download | pkgsrc-85e71b358f29ed1f1eeef26ae6d1033c54e4217f.tar.gz |
Fix INFO_FILES definitions to match the commands in bsd.pkg.mk
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bsd.pkg.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk index b98cfcbfbfa..9ab2b7cd029 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,7 +1,7 @@ #-*- mode: Fundamental; tab-width: 4; -*- # ex:ts=4 # -# $NetBSD: bsd.pkg.mk,v 1.71 1998/04/22 09:51:01 hubertf Exp $ +# $NetBSD: bsd.pkg.mk,v 1.72 1998/04/22 11:05:03 agc Exp $ # # This file is derived from bsd.port.mk - 940820 Jordan K. Hubbard. # This file is in the public domain. @@ -1219,8 +1219,8 @@ do-build: do-install: @(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_PROGRAM} ${MAKE_FLAGS} ${MAKEFILE} ${INSTALL_TARGET}) @for f in ${INFO_FILES}; do \ - ${ECHO} "install-info --info-dir=${LOCALBASE}/info ${PREFIX}/info/$$f"; \ - install-info --info-dir=${LOCALBASE}/info ${PREFIX}/info/$$f; \ + ${ECHO} "${LOCALBASE}/bin/install-info --info-dir=${PREFIX}/info ${PREFIX}/info/$$f"; \ + ${LOCALBASE}/bin/install-info --info-dir=${PREFIX}/info ${PREFIX}/info/$$f; \ done .endif |