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 | ac9cb019e001134dcd0b8c87252ac132b04938fd (patch) | |
tree | 60b722189a49bfe1537f12edb5ede23f86aeb41e /news | |
parent | 96a5c75c9ae0d944d15cdb87d15b32f11c36d448 (diff) | |
download | pkgsrc-ac9cb019e001134dcd0b8c87252ac132b04938fd.tar.gz |
Fix inappropriate uses of ${LOCALBASE} or ${X11PREFIX} instead of
${PREFIX}.
Diffstat (limited to 'news')
-rw-r--r-- | news/suck/Makefile | 10 | ||||
-rw-r--r-- | news/xrn/Makefile | 6 |
2 files changed, 8 insertions, 8 deletions
diff --git a/news/suck/Makefile b/news/suck/Makefile index 195efe49c7d..da11ff86288 100644 --- a/news/suck/Makefile +++ b/news/suck/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.19 2005/04/11 21:47:03 tv Exp $ +# $NetBSD: Makefile,v 1.20 2005/06/17 04:49:47 jlam Exp $ # DISTNAME= suck-4.3.2 @@ -26,14 +26,14 @@ GNU_CONFIGURE= yes .endif post-patch: - ${SED} -e 's|%%%HISTORY%%%|${LOCALBASE}/etc/news/history|g' \ + ${SED} -e 's|%%%HISTORY%%%|${PREFIX}/etc/news/history|g' \ ${WRKSRC}/Makefile.in >${WRKSRC}/Makefile.tmp @${MV} ${WRKSRC}/Makefile.tmp ${WRKSRC}/Makefile.in post-install: - ${INSTALL_DATA_DIR} ${LOCALBASE}/share/examples/suck - ${CP} ${WRKSRC}/sample/* ${LOCALBASE}/share/examples/suck - ${CHMOD} 644 ${LOCALBASE}/share/examples/suck/* + ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/suck + ${CP} ${WRKSRC}/sample/* ${PREFIX}/share/examples/suck + ${CHMOD} 644 ${PREFIX}/share/examples/suck/* #.include "../../databases/gdbm/buildlink3.mk" .include "../../security/openssl/buildlink3.mk" 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" |