diff options
author | jb <jb@FreeBSD.org> | 1998-08-18 06:55:36 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 1998-08-18 06:55:36 +0000 |
commit | 3b0acd09715d3d19194f3e73988fbefbd82e77ab (patch) | |
tree | d527e944c3906b0aa7bbf2206320eed679b5f622 /usr.bin/objformat/Makefile | |
parent | 8182f2c07315bbc5403ded33993e4f7e821f9228 (diff) | |
download | FreeBSD-src-3b0acd09715d3d19194f3e73988fbefbd82e77ab.zip FreeBSD-src-3b0acd09715d3d19194f3e73988fbefbd82e77ab.tar.gz |
The selection of a default object format is based on OBJFORMAT, not
BINFORMAT.
Diffstat (limited to 'usr.bin/objformat/Makefile')
-rw-r--r-- | usr.bin/objformat/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/objformat/Makefile b/usr.bin/objformat/Makefile index d81c3fc..f41dde4 100644 --- a/usr.bin/objformat/Makefile +++ b/usr.bin/objformat/Makefile @@ -4,7 +4,7 @@ PROG= objformat NOMAN= not yet CFLAGS+= -DMAIN -.if ${BINFORMAT} == elf +.if ${OBJFORMAT} == elf CFLAGS+= -DFREEBSD_ELF .else CFLAGS+= -DFREEBSD_AOUT |