diff options
author | jlam <jlam> | 2005-06-17 04:49:45 +0000 |
---|---|---|
committer | jlam <jlam> | 2005-06-17 04:49:45 +0000 |
commit | 1aad5aee2827104b1bdda0f0c50042fdfbd16bd4 (patch) | |
tree | 60b722189a49bfe1537f12edb5ede23f86aeb41e /news/suck | |
parent | 1222a7415d276a6e4a3091593789c28357f21d54 (diff) | |
download | pkgsrc-1aad5aee2827104b1bdda0f0c50042fdfbd16bd4.tar.gz |
Fix inappropriate uses of ${LOCALBASE} or ${X11PREFIX} instead of
${PREFIX}.
Diffstat (limited to 'news/suck')
-rw-r--r-- | news/suck/Makefile | 10 |
1 files changed, 5 insertions, 5 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" |