diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-18 16:46:47 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-18 16:46:47 +0000 |
commit | 833b37f7f8ca73eea46d2eac87cbaae7a3ba520e (patch) | |
tree | 9ea9e8f860a8854274b5fa4f990d1b06c1851e3f | |
parent | 725915fb15b061db96ddc4ca338a4f0dddb53b5a (diff) |
alpha and mips architectures use lorder.sh.gnm
-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: |