aboutsummaryrefslogtreecommitdiff
path: root/gnu/usr.bin
diff options
context:
space:
mode:
authorAlexander Kabaev <kan@FreeBSD.org>2004-11-07 13:46:16 +0000
committerAlexander Kabaev <kan@FreeBSD.org>2004-11-07 13:46:16 +0000
commit9e03fe9114b1b1f327cdb746363b5fd78523f046 (patch)
treebd1cdba6c2d3d642e4bf1ada61ae21603533bd60 /gnu/usr.bin
parent91d899451b52f81185c2762d584ea64faa4a9999 (diff)
downloadsrc-9e03fe9114b1b1f327cdb746363b5fd78523f046.tar.gz
src-9e03fe9114b1b1f327cdb746363b5fd78523f046.zip
Unbreak c++filt. It was disconnected from the build and never fixed during
GCC 3.4.2 work unintentioanlly. Reminded by: bms
Notes
Notes: svn path=/head/; revision=137333
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r--gnu/usr.bin/cc/c++filt/Makefile9
1 files changed, 1 insertions, 8 deletions
diff --git a/gnu/usr.bin/cc/c++filt/Makefile b/gnu/usr.bin/cc/c++filt/Makefile
index 15aa9361d432..6121146e0a19 100644
--- a/gnu/usr.bin/cc/c++filt/Makefile
+++ b/gnu/usr.bin/cc/c++filt/Makefile
@@ -5,7 +5,7 @@
.PATH: ${GCCDIR}
PROG= c++filt
-SRCS= cp-demangle.c cplus-dem+%DIKED.c
+SRCS= cp-demangle.c
NOMAN=
CFLAGS+= -DSTANDALONE_DEMANGLER -DIN_GCC -DVERSION=\"$(version)\"
@@ -13,11 +13,4 @@ CFLAGS+= -DSTANDALONE_DEMANGLER -DIN_GCC -DVERSION=\"$(version)\"
DPADD= ${LIBCC_INT}
LDADD= ${LIBCC_INT}
-cplus-dem+%DIKED.c: cplus-dem.c
- sed -e 's/^xmalloc[ ]/_DONT_xmalloc /g' \
- -e 's/^xrealloc[ ]/_DONT_xrealloc /g' \
- ${.ALLSRC} > ${.TARGET}
-
-CLEANFILES= cplus-dem+%DIKED.c
-
.include <bsd.prog.mk>