diff options
author | Marc Espie <espie@cvs.openbsd.org> | 1999-06-18 01:59:20 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 1999-06-18 01:59:20 +0000 |
commit | 41bdf0d8b036a313415ec24d72b501afc95d13ec (patch) | |
tree | 0c77e8b975688b6e4fe81a0a8e97457ea8704360 | |
parent | d7c95908d65ba145cf809fe06510f7df98f330ff (diff) |
Don't build c++filt, as it is ancient compared to egcs version.
-rw-r--r-- | gnu/usr.bin/binutils/binutils/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/binutils/binutils/Makefile.in b/gnu/usr.bin/binutils/binutils/Makefile.in index 2fb59a81c51..8ea51163191 100644 --- a/gnu/usr.bin/binutils/binutils/Makefile.in +++ b/gnu/usr.bin/binutils/binutils/Makefile.in @@ -112,7 +112,7 @@ MANPAGES= ar nm objdump ranlib size strings strip objcopy nlmconv # want them installed. INSTALL_MAN = install-man -PROGS = $(SIZE_PROG) $(OBJDUMP_PROG) $(NM_PROG) $(AR_PROG) $(STRINGS_PROG) $(STRIP_PROG) $(RANLIB_PROG) $(DEMANGLER_PROG) $(OBJCOPY_PROG) @BUILD_NLMCONV@ @BUILD_SRCONV@ @BUILD_DLLTOOL@ +PROGS = $(SIZE_PROG) $(OBJDUMP_PROG) $(NM_PROG) $(AR_PROG) $(STRINGS_PROG) $(STRIP_PROG) $(RANLIB_PROG) $(OBJCOPY_PROG) @BUILD_NLMCONV@ @BUILD_SRCONV@ @BUILD_DLLTOOL@ STAGESTUFF = $(PROGS) *.o # Files that can be generated, but should be in the distribution. # Don't build $(DEMANGLER_PROG).1, since its name may vary with the @@ -368,7 +368,7 @@ sysinfo.o: sysinfo.c srconv: srconv.o coffgrok.o $(ADDL_DEPS) $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ srconv.o coffgrok.o $(ADDL_LIBS) $(EXTRALIBS) -dlltool: dlltool.o defparse.o deflex.o cplus-dem.o $(ADDL_DEPS) +dlltool: dlltool.o defparse.o deflex.o $(ADDL_DEPS) $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ dlltool.o defparse.o deflex.o $(ADDL_LIBS) $(EXTRALIBS) defparse.c:defparse.y |