diff options
author | bde <bde@FreeBSD.org> | 1999-08-08 07:30:02 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1999-08-08 07:30:02 +0000 |
commit | a4f669aaafa1ffe540d71cea706886d4b7117d13 (patch) | |
tree | 2ce7f85f12f3bb25040b48c2a712d80b8fd90c71 /gnu | |
parent | c8630dca70d0a9118e5da651e8d41548d7511e1c (diff) | |
download | FreeBSD-src-a4f669aaafa1ffe540d71cea706886d4b7117d13.zip FreeBSD-src-a4f669aaafa1ffe540d71cea706886d4b7117d13.tar.gz |
Install c++filt in /usr/libexec/${OBJFORMAT}. The version that
was installed in /usr/bin normally got clobbered when objformat
was installed. Indirection through objformat is correct although
underscore handling is the only thing that differs for aout and
elf -- going through objformat is the easiest way to set c++filt's
underscore handling flag correctly.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/cc/c++filt/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/usr.bin/cc/c++filt/Makefile b/gnu/usr.bin/cc/c++filt/Makefile index 96bbd1f..4b6d72e 100644 --- a/gnu/usr.bin/cc/c++filt/Makefile +++ b/gnu/usr.bin/cc/c++filt/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.5 1999/04/04 16:36:31 obrien Exp $ +# $Id: Makefile,v 1.6 1999/07/04 15:51:39 bde Exp $ # .include "../Makefile.inc" @@ -8,6 +8,7 @@ PROG = c++filt SRCS = cplus-dem.c getopt.c getopt1.c underscore.c +BINDIR= /usr/libexec/${OBJFORMAT} NOMAN= 1 CFLAGS+= -DMAIN -DIN_GCC -DVERSION=\"$(version)\" |