summaryrefslogtreecommitdiffstats
path: root/share/mk/bsd.own.mk
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>1998-10-19 20:09:17 +0000
committerimp <imp@FreeBSD.org>1998-10-19 20:09:17 +0000
commitf651fc063e97f67f9553790548170225307e2c0b (patch)
tree4d3cb62aaefb2821c408611d899d56f4d47ede9b /share/mk/bsd.own.mk
parentface6e927780c3680f0315b297cc7108445cf37e (diff)
downloadFreeBSD-src-f651fc063e97f67f9553790548170225307e2c0b.zip
FreeBSD-src-f651fc063e97f67f9553790548170225307e2c0b.tar.gz
Default to aout only on i386. Before we defaulted to elf only on
Alpha. This is a minor, but important distinction. Should be a no-op to the install base. If OBJFORMAT is set elsewhere, things work exactly as they did before.
Diffstat (limited to 'share/mk/bsd.own.mk')
-rw-r--r--share/mk/bsd.own.mk8
1 files changed, 4 insertions, 4 deletions
diff --git a/share/mk/bsd.own.mk b/share/mk/bsd.own.mk
index fece284..b4e0501 100644
--- a/share/mk/bsd.own.mk
+++ b/share/mk/bsd.own.mk
@@ -1,4 +1,4 @@
-# $Id: bsd.own.mk,v 1.18 1998/08/31 23:34:37 jb Exp $
+# $Id: bsd.own.mk,v 1.19 1998/09/14 08:34:45 obrien Exp $
#
# The include file <bsd.own.mk> set common variables for owner,
# group, mode, and directories. Defaults are in brackets.
@@ -131,10 +131,10 @@ MACHINE_ARCH?= i386
.endif
# Default executable format
-.if ${MACHINE_ARCH} == "alpha"
-OBJFORMAT?= elf
-.else
+.if ${MACHINE_ARCH} == "i386"
OBJFORMAT?= aout
+.else
+OBJFORMAT?= elf
.endif
# Binaries
OpenPOWER on IntegriCloud