diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2007-01-30 04:29:04 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2007-01-30 04:29:04 +0000 |
commit | cbd60a5b80b8fa44c04db484f2e99d9e4c314802 (patch) | |
tree | ec89bf90a208686b51e89a7f082e541db28d956c | |
parent | Retire NO_FILTER_SHLIBS now that it no longer serves a purpose (diff) |
* Hard-code PORTOBJFORMAT?= elf instead of using the (now removed)
objformat(1) and defaulting to a.out. This will be removed entirely
once port makefiles no longer reference it.
Notes
Notes:
svn path=/head/; revision=183681
-rw-r--r-- | Mk/bsd.port.subdir.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mk/bsd.port.subdir.mk b/Mk/bsd.port.subdir.mk index 0ee1bce07b0b..0f93ac07a39a 100644 --- a/Mk/bsd.port.subdir.mk +++ b/Mk/bsd.port.subdir.mk @@ -61,7 +61,7 @@ OSVERSION!= /usr/sbin/sysctl -n kern.osreldate .endif .endif .if !defined(PORTOBJFORMAT) -PORTOBJFORMAT!= test -x ${DESTDIR}/usr/bin/objformat && ${DESTDIR}/usr/bin/objformat || echo aout +PORTOBJFORMAT?= elf .endif .endif |