From e596508b1fa1951fb9d34c356f09e6d8ad47288e Mon Sep 17 00:00:00 2001 From: obrien Date: Mon, 29 Mar 1999 10:59:53 +0000 Subject: [PATCH] Change !defined(NOAOUT) knob to defined(WANT_AOUT). --- Makefile | 4 ++-- Makefile.inc0 | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index f33b6ce9d1c6..73001516b008 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.224 1999/02/17 20:56:09 msmith Exp $ +# $Id: Makefile,v 1.225 1999/03/20 20:10:19 jkh Exp $ # # The user-driven targets are: # @@ -52,7 +52,7 @@ # or 3.0. If OBJFORMAT is set as an environment variable or in /etc/make.conf, # this overrides /etc/objformat. # -# Unless -DNOAOUT is specified, a `make world' with OBJFORMAT=elf will +# If -DWANT_AOUT is specified, a `make world' with OBJFORMAT=elf will # update the legacy support for aout. This includes all libraries, ld.so # and boot objects. This part of build should be regarded as # deprecated and you should _not_ expect to be able to do this past the diff --git a/Makefile.inc0 b/Makefile.inc0 index 7b82b881f063..008f1bd2a059 100644 --- a/Makefile.inc0 +++ b/Makefile.inc0 @@ -1,5 +1,5 @@ # -# $Id: Makefile.inc0,v 1.13 1998/12/20 14:30:08 jhay Exp $ +# $Id: Makefile.inc0,v 1.14 1999/01/14 06:45:53 jhay Exp $ # # This makefile ensures that the object directory is set according to the # object format to avoid mixing aout and elf formatted files during the @@ -78,11 +78,11 @@ world: @cd ${.CURDIR}; ${MK_ENV} ${MAKE} pre-world .endif @cd ${.CURDIR}; ${MK_ENV} ${MAKE} buildworld -.if ${MACHINE_ARCH} == "i386" && ${OBJFORMAT} == "elf" && !defined(NOAOUT) +.if ${MACHINE_ARCH} == "i386" && ${OBJFORMAT} == "elf" && defined(WANT_AOUT) @cd ${.CURDIR}; ${LEGACY_ENV} ${XMAKE} legacy-build .endif @cd ${.CURDIR}; ${MK_ENV} ${MAKE} -B installworld -.if ${MACHINE_ARCH} == "i386" && ${OBJFORMAT} == "elf" && !defined(NOAOUT) +.if ${MACHINE_ARCH} == "i386" && ${OBJFORMAT} == "elf" && defined(WANT_AOUT) @cd ${.CURDIR}; ${LEGACY_ENV} ${XMAKE} legacy-install .endif .if target(post-world) @@ -105,7 +105,7 @@ world: # buildworld : @cd ${.CURDIR}; ${MK_ENV} ${MAKE} buildworld -.if ${MACHINE_ARCH} == "i386" && ${OBJFORMAT} == "elf" && !defined(NOAOUT) +.if ${MACHINE_ARCH} == "i386" && ${OBJFORMAT} == "elf" && defined(WANT_AOUT) @cd ${.CURDIR}; ${LEGACY_ENV} ${XMAKE} legacy-build .endif @@ -117,6 +117,6 @@ buildworld : # installworld : @cd ${.CURDIR}; ${MK_ENV} ${MAKE} installworld -.if ${MACHINE_ARCH} == "i386" && ${OBJFORMAT} == "elf" && !defined(NOAOUT) +.if ${MACHINE_ARCH} == "i386" && ${OBJFORMAT} == "elf" && defined(WANT_AOUT) @cd ${.CURDIR}; ${LEGACY_ENV} ${XMAKE} -DNOMAN -DNOINFO legacy-install .endif