diff options
author | zuntum <zuntum> | 2001-06-13 14:37:32 +0000 |
---|---|---|
committer | zuntum <zuntum> | 2001-06-13 14:37:32 +0000 |
commit | 24937c680329e33c4364812a3c2f2032ad136758 (patch) | |
tree | 9bfc44ee7fc36b67cde938e28412f93ef21a30c9 /net/ipw/Makefile | |
parent | 78c331599eb014a12d9dc0c56c6c88c878ebbdfc (diff) | |
download | pkgsrc-24937c680329e33c4364812a3c2f2032ad136758.tar.gz |
No functional changes:
o modify patch-aa to match my current taste:
don't remove CFLAGS line, just change '=' to '+=' and remove -O switch
o don't hack install target in ipw's Makefile any longer, it's easier to
install binary in do-install target in pkg's Makefile (we already have
the post-install target as it installs README file, so I hope it's ok)
Diffstat (limited to 'net/ipw/Makefile')
-rw-r--r-- | net/ipw/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/ipw/Makefile b/net/ipw/Makefile index 145470a4947..2aa8ddc2bbb 100644 --- a/net/ipw/Makefile +++ b/net/ipw/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 2001/03/28 07:41:59 zuntum Exp $ +# $NetBSD: Makefile,v 1.2 2001/06/13 14:37:32 zuntum Exp $ # DISTNAME= ipw-3.3a @@ -11,7 +11,8 @@ COMMENT= "whois" replacement that automatically queries several databases WRKSRC= ${WRKDIR} -post-install: +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/ipw ${PREFIX}/bin ${INSTALL_DATA} ${FILESDIR}/README ${PREFIX}/share/doc/ipw.README .include "../../mk/bsd.pkg.mk" |