diff options
author | tv <tv@pkgsrc.org> | 2007-02-18 15:35:30 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 2007-02-18 15:35:30 +0000 |
commit | fe5b2d213bca692b7936a25ba79d4764fd0305f0 (patch) | |
tree | 055a9896a93466b3bf0cfe8c700b3fa45e47f3d3 /lang | |
parent | f1a3c6af33658f7da47a0789f3b228e35ddc468d (diff) | |
download | pkgsrc-fe5b2d213bca692b7936a25ba79d4764fd0305f0.tar.gz |
fix makesfiles to use consistent filename throughout
Diffstat (limited to 'lang')
-rw-r--r-- | lang/sun-jre15/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lang/sun-jre15/Makefile b/lang/sun-jre15/Makefile index 60a2d8f589a..fea93e3acc4 100644 --- a/lang/sun-jre15/Makefile +++ b/lang/sun-jre15/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.40 2007/02/07 13:07:50 abs Exp $ +# $NetBSD: Makefile,v 1.41 2007/02/18 15:35:30 tv Exp $ # Note: Regen distinfo with PKG_DEFAULT_OPTIONS+=sun-jre-jce @@ -72,14 +72,14 @@ pre-install: # re-create sfiles.mk from properties and config files # makesfiles: - ${ECHO} > sfiles.mk '# $$Net''BSD$$' - ${ECHO} >> sfiles.mk '#' - ${ECHO} >> sfiles.mk '# Created with "make makesfiles"' - ${ECHO} >> sfiles.mk '# Do not edit this file manually!' - ${ECHO} >> sfiles.mk '#' + ${ECHO} > sfiles-${MACHINE_ARCH}.mk '# $$Net''BSD$$' + ${ECHO} >> sfiles-${MACHINE_ARCH}.mk '#' + ${ECHO} >> sfiles-${MACHINE_ARCH}.mk '# Created with "make makesfiles"' + ${ECHO} >> sfiles-${MACHINE_ARCH}.mk '# Do not edit this file manually!' + ${ECHO} >> sfiles-${MACHINE_ARCH}.mk '#' cd ${WRKSRC}/lib && ${FIND} * -name fontconfig.\* -o \ -name \*.properties -o -name \*.properties.\?\? -o \ -name \*.cfg -o -name \*.security | \ - ${SED} 's/^/SFILES+= /' >>${PKGDIR}/sfiles-${MACHINE_ARCH}.mk + ${SED} 's/^/SFILES+= /' >> sfiles-${MACHINE_ARCH}.mk .include "../../lang/sun-jre15/Makefile.common" |