diff options
author | jlam <jlam@pkgsrc.org> | 2005-06-17 04:49:45 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-06-17 04:49:45 +0000 |
commit | d0915c61c3e5274723f1ab455789fc8891f1bec5 (patch) | |
tree | 60b722189a49bfe1537f12edb5ede23f86aeb41e /news/xrn | |
parent | 9df842d1237e5ab852210ddbb94642641ca27d97 (diff) | |
download | pkgsrc-d0915c61c3e5274723f1ab455789fc8891f1bec5.tar.gz |
Fix inappropriate uses of ${LOCALBASE} or ${X11PREFIX} instead of
${PREFIX}.
Diffstat (limited to 'news/xrn')
-rw-r--r-- | news/xrn/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/news/xrn/Makefile b/news/xrn/Makefile index 243941f5391..0c611ae435e 100644 --- a/news/xrn/Makefile +++ b/news/xrn/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2004/01/20 12:22:41 agc Exp $ +# $NetBSD: Makefile,v 1.11 2005/06/17 04:49:47 jlam Exp $ # DISTNAME= 9.01 @@ -18,9 +18,9 @@ DIST_SUBDIR= xrn USE_IMAKE= yes pre-install: - ${INSTALL_DATA_DIR} ${X11PREFIX}/share/doc/xrn + ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/xrn for f in COMMON-PROBLMS COPYRIGHT CREDITS ChangeLog; do \ - ${INSTALL_DATA} ${WRKSRC}/$$f ${X11PREFIX}/share/doc/xrn; \ + ${INSTALL_DATA} ${WRKSRC}/$$f ${PREFIX}/share/doc/xrn; \ done .include "../../mk/bsd.pkg.mk" |