diff options
author | grant <grant@pkgsrc.org> | 2003-10-18 11:17:40 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2003-10-18 11:17:40 +0000 |
commit | 85a3b610305306239fbd060c59fdb14e513ae41d (patch) | |
tree | 2075219f20772d78c650e1229f2a91539f4c0889 /audio/mpg123 | |
parent | 45c91de601b82e80c8370908ac97ce8ddf42fae9 (diff) | |
download | pkgsrc-85a3b610305306239fbd060c59fdb14e513ae41d.tar.gz |
add a missing double quote, whitespace and other minor nits.
Diffstat (limited to 'audio/mpg123')
-rw-r--r-- | audio/mpg123/Makefile.common | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/audio/mpg123/Makefile.common b/audio/mpg123/Makefile.common index 676c5f12ad5..800a143a726 100644 --- a/audio/mpg123/Makefile.common +++ b/audio/mpg123/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.7 2003/07/17 21:22:58 grant Exp $ -*- Makefile -*- +# $NetBSD: Makefile.common,v 1.8 2003/10/18 11:17:40 grant Exp $ -*- Makefile -*- DISTNAME= mpg123-0.59r MPG123_VERSION= 0.59.18 CATEGORIES= audio @@ -40,7 +40,7 @@ ALL_TARGET= netbsd-i386-elf${TARGET_SUFFIX} ALL_TARGET= netbsd-i386${TARGET_SUFFIX} . endif # ELF . elif ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "arm32" -. if defined(MPG123_ARM_FIXED64) && ${MPG123_ARM_FIXED64} == "YES +. if defined(MPG123_ARM_FIXED64) && ${MPG123_ARM_FIXED64} == "YES" ALL_TARGET= netbsd-arm-64${TARGET_SUFFIX} . else ALL_TARGET= netbsd-arm${TARGET_SUFFIX} @@ -63,8 +63,6 @@ pre-patch: post-patch: ${RM} -f ${WRKSRC}/mpg123 - ${CP} ${FILESDIR}/decode_i586_.s ${WRKSRC}/ - cd ${WRKSRC} ; ${MV} decode_i586.s decode_i586.s.orig ;\ - ${SED} \ - -e 's@^/@#/@g' \ - <decode_i586.s.orig >decode_i586.s + ${CP} ${FILESDIR}/decode_i586_.s ${WRKSRC} + cd ${WRKSRC} && ${MV} decode_i586.s decode_i586.s.orig; \ + ${SED} -e 's@^/@#/@g' decode_i586.s.orig > decode_i586.s |