diff options
Diffstat (limited to 'security/heimdal/Makefile')
-rw-r--r-- | security/heimdal/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/security/heimdal/Makefile b/security/heimdal/Makefile index c343ed74a44..79293633261 100644 --- a/security/heimdal/Makefile +++ b/security/heimdal/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.34 2005/04/21 14:00:36 wiz Exp $ +# $NetBSD: Makefile,v 1.35 2005/04/21 14:35:47 lha Exp $ -DISTNAME= heimdal-0.6.3 -PKGREVISION= 3 +DISTNAME= heimdal-0.6.4 CATEGORIES= security MASTER_SITES= ftp://ftp.pdc.kth.se/pub/heimdal/src/ \ ftp://ftp.sunet.se/pub/unix/admin/mirror-pdc/heimdal/src/ @@ -98,10 +97,10 @@ SUBST_SED.heimdal= \ -e "/PATH_LOGIN/s,/login,/${KRB5_PREFIX}login,g" pre-configure: - cd ${WRKSRC}; for file in lib/hdb/hdb.h; do \ + cd ${WRKSRC}; for f in lib/hdb/hdb.h; do \ ${SED} -e "s|/var/heimdal|${HEIMDAL_STATEDIR}|g" \ - $$file > $$file.new; \ - ${MV} -f $$file.new $$file; \ + $$f > $$f.new; \ + ${MV} -f $$f.new $$f; \ done .include "../../mk/bsd.pkg.mk" |