diff options
author | agc <agc> | 1998-06-10 08:02:08 +0000 |
---|---|---|
committer | agc <agc> | 1998-06-10 08:02:08 +0000 |
commit | 6e427b5c63f571cc7d3488032b70fa7cdfd7b6b1 (patch) | |
tree | 6666e3fdc661d0f840de3ed2df836db67e9df18b /security | |
parent | 6e8881486aab6b4666e016faf15c9b2d917ad2fc (diff) | |
download | pkgsrc-6e427b5c63f571cc7d3488032b70fa7cdfd7b6b1.tar.gz |
Remove the trailing '-f' from MAKE_FLAGS in bsd.pkg.mk, and include it
explicitly in the commands before ${MAKEFILE}; modify package
Makefiles to conform to this rationalisation. This was used
inconsistently in many packages, some including it, some not.
Diffstat (limited to 'security')
-rw-r--r-- | security/ssh/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/ssh/Makefile b/security/ssh/Makefile index 8d8feb72387..8ec19184b31 100644 --- a/security/ssh/Makefile +++ b/security/ssh/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.21 1998/06/03 13:49:07 agc Exp $ +# $NetBSD: Makefile,v 1.22 1998/06/10 08:02:09 agc Exp $ # FreeBSD Id: Makefile,v 1.47 1997/11/10 22:04:42 dima Exp # @@ -111,7 +111,7 @@ post-install: @${MKDIR} ${PREFIX}/share/examples/ssh @${MKDIR} ${WRKDIR}${SSH_CONF_DIR} (cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE_PROGRAM} ${MAKE_FLAGS} \ - ${MAKEFILE} install_prefix=${WRKDIR} install-configs) + -f ${MAKEFILE} install_prefix=${WRKDIR} install-configs) ${INSTALL_DATA} ${WRKDIR}${SSH_CONF_DIR}/ssh_config \ ${WRKDIR}${SSH_CONF_DIR}/sshd_config ${PREFIX}/share/examples/ssh @${RM} -rf ${WRKDIR}${SSH_CONF_DIR} |