diff options
author | grant <grant@pkgsrc.org> | 2004-06-17 12:46:08 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2004-06-17 12:46:08 +0000 |
commit | e53f11036087f594177f895ea4f45595a0f71266 (patch) | |
tree | 0d3b71d6f79289f094fad55897706066d45417aa /sysutils | |
parent | d541e5e0e244b7ed43cbfb09053ee0c43c92d402 (diff) | |
download | pkgsrc-e53f11036087f594177f895ea4f45595a0f71266.tar.gz |
- use ${CC} build not "gcc"
- ensure binary is installed executable
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/checkpassword/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sysutils/checkpassword/Makefile b/sysutils/checkpassword/Makefile index 21ccbfd242c..4f08d6358e2 100644 --- a/sysutils/checkpassword/Makefile +++ b/sysutils/checkpassword/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2003/07/21 17:24:11 martti Exp $ +# $NetBSD: Makefile,v 1.4 2004/06/17 12:46:08 grant Exp $ # DISTNAME= checkpassword-0.90 @@ -14,5 +14,10 @@ INSTALL_TARGET= setup check post-patch: ${ECHO} ${PREFIX} > ${WRKSRC}/conf-home + ${ECHO} ${CC} > ${WRKSRC}/conf-cc + ${ECHO} ${CC} > ${WRKSRC}/conf-ld + +post-install: + ${CHMOD} +x ${PREFIX}/bin/checkpassword .include "../../mk/bsd.pkg.mk" |