aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorWolfram Schneider <wosch@FreeBSD.org>1998-08-02 09:24:59 +0000
committerWolfram Schneider <wosch@FreeBSD.org>1998-08-02 09:24:59 +0000
commit0ae9a94ad1cd9a9f9c0ff3a19bac86b039302bab (patch)
tree0a7cbaceb71e1b75baaacdf048d372f73960c1b2 /Makefile
parent94245ac66cafc0f15c1e14222189b54ca44118c0 (diff)
downloadsrc-0ae9a94ad1cd9a9f9c0ff3a19bac86b039302bab.tar.gz
src-0ae9a94ad1cd9a9f9c0ff3a19bac86b039302bab.zip
Malformed conditional if MACHINE_ARCH is not defined. From rev 1.195.
Notes
Notes: svn path=/head/; revision=38009
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index a4f825750e17..3fc28531dc05 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
#
-# $Id: Makefile,v 1.204 1998/07/07 05:37:34 bde Exp $
+# $Id: Makefile,v 1.205 1998/07/07 09:59:48 bde Exp $
#
# While porting to the another architecture include the bootstrap instead
# of the normal build.
@@ -366,7 +366,7 @@ reinstall:
@echo " Installing everything.."
@echo "--------------------------------------------------------------"
cd ${.CURDIR}; ${MAKE} install
-.if ${MACHINE_ARCH} == "i386"
+.if !defined(MACHINE_ARCH) || ${MACHINE_ARCH} == "i386"
@echo
@echo "--------------------------------------------------------------"
@echo " Re-scanning the shared libraries.."
@@ -601,7 +601,7 @@ includes:
#
# Declare tools if they are not required on all architectures.
#
-.if ${MACHINE_ARCH} == "i386"
+.if !defined(MACHINE_ARCH) || ${MACHINE_ARCH} == "i386"
# aout tools:
_aout_ar = usr.bin/ar
_aout_as = gnu/usr.bin/as