diff options
author | agc <agc@pkgsrc.org> | 2000-07-11 10:03:50 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2000-07-11 10:03:50 +0000 |
commit | 3d757580da7b8bbb19b7061be24a621aba71155b (patch) | |
tree | 1f2d38acc47f9a2a513b5f788cd380d757697f5a /news/xrn | |
parent | 3f3d3d9ab600cd96995f7c9a1e12ae488dc91090 (diff) | |
download | pkgsrc-3d757580da7b8bbb19b7061be24a621aba71155b.tar.gz |
Use X11PREFIX in preference to X11BASE, just in case xpkgwedge is
installed.
Also use a shell "for" loop in preference to a make ".for" loop.
Diffstat (limited to 'news/xrn')
-rw-r--r-- | news/xrn/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/news/xrn/Makefile b/news/xrn/Makefile index 7f73c0c6066..cb98ab69428 100644 --- a/news/xrn/Makefile +++ b/news/xrn/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 1998/08/29 21:54:49 frueauf Exp $ +# $NetBSD: Makefile,v 1.2 2000/07/11 10:03:50 agc Exp $ # DISTNAME= 9.01 @@ -16,9 +16,9 @@ USE_IMAKE= yes NO_WRKSUBDIR= yes pre-install: - ${MKDIR} ${X11BASE}/share/doc/xrn -.for file in COMMON-PROBLMS COPYRIGHT CREDITS ChangeLog - ${INSTALL_DATA} ${WRKSRC}/${file} ${X11BASE}/share/doc/xrn -.endfor + ${MKDIR} ${X11PREFIX}/share/doc/xrn + for f in COMMON-PROBLMS COPYRIGHT CREDITS ChangeLog; do \ + ${INSTALL_DATA} ${WRKSRC}/$$f ${X11PREFIX}/share/doc/xrn; \ + done .include "../../mk/bsd.pkg.mk" |