diff options
author | wosch <wosch@FreeBSD.org> | 1998-08-02 09:24:59 +0000 |
---|---|---|
committer | wosch <wosch@FreeBSD.org> | 1998-08-02 09:24:59 +0000 |
commit | d2d8dfe1c58132ff0dd6246508ef0d96a64d3513 (patch) | |
tree | 79e63bf7e46b8d6e9f5b47e29033be475fbed682 /Makefile | |
parent | 1312bb150c062ced1db2a2ab034b2eefdcd84693 (diff) | |
download | FreeBSD-src-d2d8dfe1c58132ff0dd6246508ef0d96a64d3513.zip FreeBSD-src-d2d8dfe1c58132ff0dd6246508ef0d96a64d3513.tar.gz |
Malformed conditional if MACHINE_ARCH is not defined. From rev 1.195.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |