diff options
author | grant <grant> | 2003-10-23 21:39:52 +0000 |
---|---|---|
committer | grant <grant> | 2003-10-23 21:39:52 +0000 |
commit | 060d137508267cc29611095b3ba500cdecd265eb (patch) | |
tree | 954c440e4d2de940b123d22f6f5b02a44885a04e /audio | |
parent | d024e8efeafd86b0d9187219046e738146deb21f (diff) | |
download | pkgsrc-060d137508267cc29611095b3ba500cdecd265eb.tar.gz |
fall back to 'netbsd' target if there's no special arch target.
noted by martin@.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/mpg123/Makefile.common | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/audio/mpg123/Makefile.common b/audio/mpg123/Makefile.common index 07d4774efd0..e5f14ed32c8 100644 --- a/audio/mpg123/Makefile.common +++ b/audio/mpg123/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.10 2003/10/18 11:32:39 grant Exp $ +# $NetBSD: Makefile.common,v 1.11 2003/10/23 21:39:52 grant Exp $ DISTNAME= mpg123-0.59r MPG123_VERSION= 0.59.18 @@ -48,6 +48,8 @@ ALL_TARGET= netbsd-arm${TARGET_SUFFIX} . endif # MPG123_ARM_FIXED64 . elif ${MACHINE_ARCH} == "m68k" ALL_TARGET= netbsd-m68k${TARGET_SUFFIX} +. else +ALL_TARGET= netbsd . endif .else ALL_TARGET= ${LOWER_OPSYS}${TARGET_SUFFIX} |