diff options
-rw-r--r-- | usr.bin/lorder/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/lorder/Makefile b/usr.bin/lorder/Makefile index c79625324e8..388e749d159 100644 --- a/usr.bin/lorder/Makefile +++ b/usr.bin/lorder/Makefile @@ -1,13 +1,13 @@ -# $NetBSD: Makefile,v 1.8 1995/04/24 07:39:04 cgd Exp $ +# $NetBSD: Makefile,v 1.9 1995/12/18 07:59:12 jonathan Exp $ # @(#)Makefile 8.1 (Berkeley) 6/6/93 MAN= lorder.1 -.if (${MACHINE_ARCH} != "alpha") -SCRIPT= lorder.sh -.else -# alpha uses special version which works with GNU nm. +.if (${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "mips") +# alpha, mips use special version which works with GNU (or BSD) nm. SCRIPT= lorder.sh.gnm +.else +SCRIPT= lorder.sh .endif realinstall: |