diff options
author | jb <jb@FreeBSD.org> | 1998-08-31 23:34:37 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 1998-08-31 23:34:37 +0000 |
commit | 4fa5599a7aee68ca0eb4a577be65769b1a60c513 (patch) | |
tree | 09b9c0f5bf47e7b8712f78e25b0ac85f0eecf8a7 /share | |
parent | 815f3686d0275b1e63d326042e37d5244e051121 (diff) | |
download | FreeBSD-src-4fa5599a7aee68ca0eb4a577be65769b1a60c513.zip FreeBSD-src-4fa5599a7aee68ca0eb4a577be65769b1a60c513.tar.gz |
Oops, I missed the update from /etc/objectformat to /etc/objformat
which caused a port-ELF upgrade to continue to build aout.
Diffstat (limited to 'share')
-rw-r--r-- | share/mk/bsd.own.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/share/mk/bsd.own.mk b/share/mk/bsd.own.mk index 45c51e5..345fbe3 100644 --- a/share/mk/bsd.own.mk +++ b/share/mk/bsd.own.mk @@ -1,4 +1,4 @@ -# $Id: bsd.own.mk,v 1.16 1998/08/18 00:50:36 jb Exp $ +# $Id: bsd.own.mk,v 1.17 1998/08/30 20:35:24 jb Exp $ # # The include file <bsd.own.mk> set common variables for owner, # group, mode, and directories. Defaults are in brackets. @@ -126,8 +126,8 @@ MACHINE_ARCH?= i386 # object format from the OBJFORMAT environment variable and if this is not # defined, it reads /etc/objectformat. # -.if exists(/etc/objectformat) && !defined(OBJFORMAT) -.include "/etc/objectformat" +.if exists(/etc/objformat) && !defined(OBJFORMAT) +.include "/etc/objformat" .endif # Default executable format |