diff options
author | rillig <rillig> | 2005-12-05 20:49:47 +0000 |
---|---|---|
committer | rillig <rillig> | 2005-12-05 20:49:47 +0000 |
commit | b4f920543059af038598712771c3211999ef42a6 (patch) | |
tree | dac5b1dd14794d86b061d26b9503adb2552ed3f8 /emulators/pcemu | |
parent | 5bf026ec112f405b514a2d69a72e10fa92c4c524 (diff) | |
download | pkgsrc-b4f920543059af038598712771c3211999ef42a6.tar.gz |
Fixed pkglint warnings. The warnings are mostly quoting issues, for
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some
other changes are outlined in
http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
Diffstat (limited to 'emulators/pcemu')
-rw-r--r-- | emulators/pcemu/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/emulators/pcemu/Makefile b/emulators/pcemu/Makefile index 3c4556bb419..00920e40f78 100644 --- a/emulators/pcemu/Makefile +++ b/emulators/pcemu/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2005/06/01 18:02:47 jlam Exp $ +# $NetBSD: Makefile,v 1.6 2005/12/05 20:50:11 rillig Exp $ DISTNAME= pcemu1.01alpha PKGNAME= pcemu-1.01a @@ -10,14 +10,14 @@ MASTER_SITES= ftp://ftp.freebsd.org/pub/FreeBSD/distfiles/ \ MAINTAINER= eric@fox.phoenix.az.us COMMENT= 8086 PC emulator, by David Hedley -MAKE_ENV+= FILESDIR=${FILESDIR} +MAKE_ENV+= FILESDIR=${FILESDIR:Q} .include "../../mk/x11.buildlink3.mk" do-configure: cd ${WRKSRC}; \ ${MKDIR} ${WRKSRC}/bootstrap; \ - sh < ${FILESDIR}/bootstrap.shar + ${SH} < ${FILESDIR}/bootstrap.shar post-configure: ${SED} -e 's|/usr/local|${PREFIX}|g' < ${WRKSRC}/bootstrap/help.txt > \ |