diff options
author | wiz <wiz> | 2006-06-29 23:01:43 +0000 |
---|---|---|
committer | wiz <wiz> | 2006-06-29 23:01:43 +0000 |
commit | f0b63794076bd5e4d2c98b5fc068d6ec03d748a6 (patch) | |
tree | ee65f6c1d7e4b0bfc03b4f0546e58768e46c9e7c /emulators | |
parent | d42333450fb8399d8b2987324457084cb0fde754 (diff) | |
download | pkgsrc-f0b63794076bd5e4d2c98b5fc068d6ec03d748a6.tar.gz |
Fix a few pkglint warnings.
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/vice/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/emulators/vice/Makefile b/emulators/vice/Makefile index bee6f63ef1a..30dad7c30f9 100644 --- a/emulators/vice/Makefile +++ b/emulators/vice/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.67 2006/06/29 22:56:34 dillo Exp $ +# $NetBSD: Makefile,v 1.68 2006/06/29 23:01:43 wiz Exp $ # DISTNAME= vice-1.19 @@ -24,7 +24,7 @@ USE_LANGUAGES+= c c++ GNU_CONFIGURE= YES CONFIGURE_ARGS+= --enable-fullscreen -INFO_FILES= # PLIST +INFO_FILES= YES FONTS_DIRS.x11= ${PREFIX}/share/vice/fonts REQD_DIRS+= ${PREFIX}/share/vice/fonts REQD_DIRS+= ${PREFIX}/share/vice @@ -39,16 +39,16 @@ CONFIGURE_ARGS+= --without-oss # These changes are rather common, so sed instead of patch: post-patch: - @for file in `${FIND} ${WRKSRC} -name Makefile.in -print` \ + for file in `${FIND} ${WRKSRC} -name Makefile.in -print` \ ${WRKSRC}/src/arch/unix/archdep.h; do \ ${SED} -e "s|/lib/vice/doc|/share/doc/vice|g" \ -e "s|/lib/vice|/share/vice|g" \ -e "/^pkglibdir/s|(libdir)|(datadir)|g" \ $$file > $$file.new; \ - if cmp -s $$file $$file.new; then \ - rm -f $$file.new; \ + if ${CMP} -s $$file $$file.new; then \ + ${RM} -f $$file.new; \ else \ - mv -f $$file.new $$file; \ + ${MV} -f $$file.new $$file; \ fi; \ done |