diff options
author | kris <kris@FreeBSD.org> | 2007-01-30 12:29:04 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2007-01-30 12:29:04 +0800 |
commit | 369fedc4d19f7bdaf92200ae59a30c4ec746ab0d (patch) | |
tree | 281cbbd0ecbfa2dbd629745dd397d3d009faed4c /Mk/bsd.port.subdir.mk | |
parent | 7b69d793d17614fc7c023575f907ec7cc9ea6205 (diff) | |
download | freebsd-ports-gnome-369fedc4d19f7bdaf92200ae59a30c4ec746ab0d.tar.gz freebsd-ports-gnome-369fedc4d19f7bdaf92200ae59a30c4ec746ab0d.tar.zst freebsd-ports-gnome-369fedc4d19f7bdaf92200ae59a30c4ec746ab0d.zip |
* 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.
Diffstat (limited to 'Mk/bsd.port.subdir.mk')
-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 |