diff options
author | grant <grant@pkgsrc.org> | 2002-08-21 02:43:44 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2002-08-21 02:43:44 +0000 |
commit | 618961e5682a168bdf9883c5ef31d20eadc5e39e (patch) | |
tree | ddc8b0a52d3c8d0a0a20293b67556dd0432d6554 /audio/mpg123-nas | |
parent | 386e46734bbc42d97cf2cb604330fc1e133aa6a1 (diff) | |
download | pkgsrc-618961e5682a168bdf9883c5ef31d20eadc5e39e.tar.gz |
check that USE_INET6 is defined.
remove extraneous parenthesis around .if (${FOO} ..) conditions.
Diffstat (limited to 'audio/mpg123-nas')
-rw-r--r-- | audio/mpg123-nas/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/audio/mpg123-nas/Makefile b/audio/mpg123-nas/Makefile index 073642d0c64..95ebf230830 100644 --- a/audio/mpg123-nas/Makefile +++ b/audio/mpg123-nas/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 2002/05/25 06:28:00 rh Exp $ +# $NetBSD: Makefile,v 1.2 2002/08/21 02:43:44 grant Exp $ # DISTNAME= mpg123-0.59r @@ -27,15 +27,15 @@ USE_BUILDLINK_ONLY= # defined # for OBJECT_FMT .include "../../mk/bsd.prefs.mk" -.if (${MACHINE_ARCH} == "i386") -.if (${OBJECT_FMT} == "ELF") +.if ${MACHINE_ARCH} == "i386" +.if ${OBJECT_FMT} == "ELF" ALL_TARGET= netbsd-i386-elf .else ALL_TARGET= netbsd-i386 .endif -.elif (${MACHINE_ARCH} == "arm32") +.elif ${MACHINE_ARCH} == "arm32" ALL_TARGET= netbsd-arm32 -.elif (${MACHINE_ARCH} == "m68k") +.elif ${MACHINE_ARCH} == "m68k" ALL_TARGET= netbsd-m68k .else ALL_TARGET= ${LOWER_OPSYS} |