Skip to content

Commit

Permalink
Use ${TOOL_SED} instead if plain sed in Makefiles.
Browse files Browse the repository at this point in the history
  • Loading branch information
apb committed Oct 25, 2008
1 parent a40f3ba commit f34d4fd
Show file tree
Hide file tree
Showing 133 changed files with 453 additions and 369 deletions.
4 changes: 2 additions & 2 deletions bin/csh/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.28 2008/08/29 00:02:21 gmcgarry Exp $
# $NetBSD: Makefile,v 1.29 2008/10/25 22:27:34 apb Exp $
# @(#)Makefile 8.1 (Berkeley) 5/31/93
#
# C Shell with process control; VM/UNIX VAX Makefile
Expand Down Expand Up @@ -41,7 +41,7 @@ const.h: const.c
rm -f ${.TARGET}
echo '/* Do not edit this file, make creates it. */' > ${.TARGET}
${CC} -E ${CPPFLAGS} ${.ALLSRC} | egrep 'Char STR' | \
sed -e 's/Char \([a-zA-Z0-9_]*\)\(.*\)/extern Char \1[];/' | \
${TOOL_SED} -e 's/Char \([a-zA-Z0-9_]*\)\(.*\)/extern Char \1[];/' | \
sort >> ${.TARGET}

.if make(install)
Expand Down
2 changes: 1 addition & 1 deletion dist/tcpdump/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ version.o: version.c

version.c: $(srcdir)/VERSION
@rm -f $@
sed -e 's/.*/char version[] = "&";/' $(srcdir)/VERSION > $@
${TOOL_SED} -e 's/.*/char version[] = "&";/' $(srcdir)/VERSION > $@

install:
[ -d $(DESTDIR)$(sbindir) ] || \
Expand Down
8 changes: 4 additions & 4 deletions distrib/bebox/floppies/ramdisk/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.11 2003/10/26 07:25:33 lukem Exp $
# $NetBSD: Makefile,v 1.12 2008/10/25 22:27:34 apb Exp $

TOP= ${.CURDIR}/..

Expand Down Expand Up @@ -27,13 +27,13 @@ MTREECONF= mtree.conf
DISKTYPE= floppy3

install.sh: install.tmpl
sed "s/@@VERSION@@/${DISTRIBVER}/" < ${.ALLSRC} > ${.TARGET}
${TOOL_SED} "s/@@VERSION@@/${DISTRIBVER}/" < ${.ALLSRC} > ${.TARGET}

upgrade.sh: upgrade.tmpl
sed "s/@@VERSION@@/${DISTRIBVER}/" < ${.ALLSRC} > ${.TARGET}
${TOOL_SED} "s/@@VERSION@@/${DISTRIBVER}/" < ${.ALLSRC} > ${.TARGET}

start.sh: start.tmpl
sed "s/@@VERSION@@/${DISTRIBVER}/" < ${.ALLSRC} > ${.TARGET}
${TOOL_SED} "s/@@VERSION@@/${DISTRIBVER}/" < ${.ALLSRC} > ${.TARGET}

all: ${AUXTARGETS} ${CBIN}
dd if=/dev/zero of=${IMAGE} count=3074
Expand Down
11 changes: 9 additions & 2 deletions distrib/cdrom/Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# $NetBSD: Makefile,v 1.37 2007/12/08 12:30:18 tsutsui Exp $
# $NetBSD: Makefile,v 1.38 2008/10/25 22:27:34 apb Exp $
#
# Consult "*.conf" for the configuration variables; this Makefile is typically
# not edited for basic configuration changes.
##############################################################################

.include <bsd.own.mk>

all:

.if exists(site.conf)
Expand Down Expand Up @@ -412,7 +414,12 @@ size-${image}: stage-${image} extfileprep fileprep-${image}
.if !empty(BASE_PORTS.${image}:Mmacppc)
${MACPPC_MKBOOTHFSDIR}/macppc_mkboothfs ${MACPPC_MKBOOTHFSDIR}/boothfs
.endif
@size=$$((`cd ${STAGEDIR}/${image} && ${MKISOFS} ${MKISOFS_ARGS} ${MKISOFS_ARGS.${image}} -print-size . 2>&1 | tee /dev/stderr | sed '/=/!d;s/^[^=]*=//'` * 2048)) && \
@size=$$((`cd ${STAGEDIR}/${image} && \
${MKISOFS} ${MKISOFS_ARGS} ${MKISOFS_ARGS.${image}} \
-print-size . 2>&1
| tee /dev/stderr \
| ${TOOL_SED} '/=/!d;s/^[^=]*=//'`
* 2048)) && \
if [ "${SUN_BOOT_ARGS.${image}}" != "" ]; then \
size=$$(($$(($$size + 327679)) / 327680 * 327680)) && \
bootfiles=`for f in ${SUN_BOOT_ARGS.${image}:N-:O}; do echo $$f; done | uniq` && \
Expand Down
5 changes: 3 additions & 2 deletions distrib/common/Makefile.makedev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# $NetBSD: Makefile.makedev,v 1.14 2008/05/03 05:08:45 tsutsui Exp $
# $NetBSD: Makefile.makedev,v 1.15 2008/10/25 22:27:34 apb Exp $
#
# Makefile snippet to add ${MAKEDEVTARGETS} devices to the mtree list
# (if set), otherwise copy .OBJDIR-of-etc/MAKEDEV to ./dev
Expand Down Expand Up @@ -46,7 +46,8 @@ ${MAKEDEVSPEC}: ${MAKEDEVSCRIPT}
-rm -f ${.TARGET} ${.TARGET}.tmp
MACHINE=${MACHINE:Q} MACHINE_ARCH=${MACHINE_ARCH:Q} \
${HOST_SH} ${MAKEDEVSCRIPT} -s ${MAKEDEVTARGETS} \
| sed -e '/^\. type=dir/d' -e 's,^\.,./dev,' > ${.TARGET}.tmp \
| ${TOOL_SED} -e '/^\. type=dir/d' -e 's,^\.,./dev,' \
> ${.TARGET}.tmp \
&& sort -o ${.TARGET} ${.TARGET}.tmp

.else # ! MAKEDEVTARGETS
Expand Down
4 changes: 2 additions & 2 deletions distrib/notes/Makefile.inc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# $NetBSD: Makefile.inc,v 1.40 2007/12/11 20:57:19 jnemeth Exp $
# $NetBSD: Makefile.inc,v 1.41 2008/10/25 22:27:34 apb Exp $
#

# Ross Harvey <ross@NetBSD.org>
Expand Down Expand Up @@ -74,7 +74,7 @@ ${TARG}.more: ${SRCS} ${TOC.more} ${DISTRIBVERDEP}
#

TOCPROC= 2>&1 >/dev/null |\
sed -n '/^\.Ti/{s/ \([A-Za-z]\)/ "\1/; s/ *$$/"/; p; }'
${TOOL_SED} -n '/^\.Ti/{s/ \([A-Za-z]\)/ "\1/; s/ *$$/"/; p; }'

${TARG}.PostScript.toc: ${SRCS}
${TOOL_GROFF} -dTOC=1 ${ARGS_PS} -mdoc ${MAIN} ${TOCPROC} > $@.tmp
Expand Down
4 changes: 2 additions & 2 deletions distrib/sun2/miniroot/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.26 2008/04/29 17:42:35 tsutsui Exp $
# $NetBSD: Makefile,v 1.27 2008/10/25 22:27:34 apb Exp $

.include <bsd.own.mk>
.include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
Expand Down Expand Up @@ -48,7 +48,7 @@ HACKSRC= ${DISTRIBDIR}/utils/libhack
${CRUNCHBIN}: libhack.o

install.sub: ${DISTRIBDIR}/miniroot/install.sub
sed -e "/^VERSION=/s/=.*/=${DISTRIBREV}/" < $? > $@
${TOOL_SED} -e "/^VERSION=/s/=.*/=${DISTRIBREV}/" < $? > $@

CLEANFILES+= install.sub

Expand Down
4 changes: 2 additions & 2 deletions distrib/sun3/miniroot/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.37 2008/04/29 17:30:34 tsutsui Exp $
# $NetBSD: Makefile,v 1.38 2008/10/25 22:27:34 apb Exp $

.include <bsd.own.mk>
.include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
Expand Down Expand Up @@ -49,7 +49,7 @@ HACKSRC= ${DISTRIBDIR}/utils/libhack
${CRUNCHBIN}: libhack.o

install.sub: ${DISTRIBDIR}/miniroot/install.sub
sed -e "/^VERSION=/s/=.*/=${DISTRIBREV}/" < $? > $@
${TOOL_SED} -e "/^VERSION=/s/=.*/=${DISTRIBREV}/" < $? > $@

CLEANFILES+= install.sub

Expand Down
4 changes: 2 additions & 2 deletions distrib/syspkg/mk/bsd.syspkg.mk
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# $NetBSD: bsd.syspkg.mk,v 1.4 2008/10/19 22:05:20 apb Exp $
# $NetBSD: bsd.syspkg.mk,v 1.5 2008/10/25 22:27:34 apb Exp $
#
# This file is derived from:
#
Expand Down Expand Up @@ -113,7 +113,7 @@ MKDIR?= /bin/mkdir -p
MV?= /bin/mv
PKG_TOOLS_BIN?= /usr/sbin
RM?= /bin/rm
SED?= /usr/bin/sed
SED?= ${TOOL_SED:U/usr/bin/sed}
SETENV?= /usr/bin/env
SH?= /bin/sh
TEST?= test # Shell builtin
Expand Down
11 changes: 6 additions & 5 deletions distrib/utils/sysinst/Makefile.inc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# $NetBSD: Makefile.inc,v 1.46 2008/10/19 22:05:20 apb Exp $
# $NetBSD: Makefile.inc,v 1.47 2008/10/25 22:27:34 apb Exp $
#
# Makefile for sysinst

Expand Down Expand Up @@ -107,24 +107,25 @@ msgtouch: ${DISTRIBVERDEP}

msg.def: msg.mi.${SYSINSTLANG} ${MSG_MD} msgtouch
${_MKTARGET_CREATE}
sed "s/@@VERSION@@/${DISTRIBVER}/" ${.ALLSRC} | \
${TOOL_SED} "s/@@VERSION@@/${DISTRIBVER}/" ${.ALLSRC} | \
${TOOL_AWK} -f ${UNIF_AWK} -v defines="${MD_OPTIONS}" > ${.TARGET}

menus.def: menus.mi ${MENUS_MD} msgtouch
${_MKTARGET_CREATE}
sed "s/@@VERSION@@/${DISTRIBVER}/" ${.ALLSRC} | \
${TOOL_SED} "s/@@VERSION@@/${DISTRIBVER}/" ${.ALLSRC} | \
${TOOL_AWK} -f ${UNIF_AWK} -v defines="${MD_OPTIONS}" > ${.TARGET}

sysinstmsgs.fmtcnt: msg.mi.${SYSINSTLANG} ${MSG_MD} msgtouch msg_defs.h
${_MKTARGET_CREATE}
sed "s/@@VERSION@@/${DISTRIBVER}/" ${.ALLSRC:M*.${SYSINSTLANG}} | \
${TOOL_SED} "s/@@VERSION@@/${DISTRIBVER}/" \
${.ALLSRC:M*.${SYSINSTLANG}} | \
${TOOL_AWK} -f ${UNIF_AWK} -v defines="${MD_OPTIONS}" | \
${HOST_SH} ${MSG_XLAT_SH} -c > ${.TARGET}

.for LANG in ${LANGUAGES:N${SYSINSTLANG}}
sysinstmsgs.${LANG}: msg.mi.${LANG} ${MSG_MD:S/.${SYSINSTLANG}$/.${LANG}/} msgtouch msg_defs.h sysinstmsgs.fmtcnt
${_MKTARGET_CREATE}
sed "s/@@VERSION@@/${DISTRIBVER}/" ${.ALLSRC:M*.${LANG}} | \
${TOOL_SED} "s/@@VERSION@@/${DISTRIBVER}/" ${.ALLSRC:M*.${LANG}} | \
${TOOL_AWK} -f ${UNIF_AWK} -v defines="${MD_OPTIONS}" | \
${HOST_SH} ${MSG_XLAT_SH} -f sysinstmsgs.fmtcnt > ${.TARGET}

Expand Down
4 changes: 2 additions & 2 deletions external/bsd/dhcpcd/sbin/dhcpcd/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.2 2008/09/20 17:38:19 chris Exp $
# $NetBSD: Makefile,v 1.3 2008/10/25 22:27:34 apb Exp $
#

PROG= dhcpcd
Expand Down Expand Up @@ -31,7 +31,7 @@ CLEANFILES= dhcpcd.conf.5 dhcpcd.8 \

.for f in dhcpcd-run-hooks dhcpcd.conf.5 dhcpcd.8 dhcpcd-run-hooks.8
${f}: ${f}.in
sed -e 's:@SYSCONFDIR@:/etc:g' -e 's:@DBDIR@:/var/db:g' \
${TOOL_SED} -e 's:@SYSCONFDIR@:/etc:g' -e 's:@DBDIR@:/var/db:g' \
-e 's:@HOOKDIR@:/libexec/dhcpcd-hooks:g' \
-e 's:@SCRIPT@:/libexec/dhcpcd-run-hooks:g' ${DIST}/${f}.in > $@
.endfor
Expand Down
4 changes: 2 additions & 2 deletions external/mit/xorg/bin/missing-apps/rstart/Makefile.rstart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# $NetBSD: Makefile.rstart,v 1.1.1.1 2008/07/29 05:01:22 mrg Exp $
# $NetBSD: Makefile.rstart,v 1.2 2008/10/25 22:27:34 apb Exp $

.include <bsd.own.mk>

Expand All @@ -9,7 +9,7 @@ FILESDIR= ${X11ETCDIR}/rstart/${CFDIR}
${_F}.sed: ${_F}
${_MKTARGET_CREATE}
rm -f ${.TARGET}
sed ${CFSED} < ${.ALLSRC} > ${.TARGET}
${TOOL_SED} ${CFSED} < ${.ALLSRC} > ${.TARGET}

CONFIGFILES+= ${_F}.sed
CLEANFILES+= ${_F}.sed
Expand Down
4 changes: 2 additions & 2 deletions external/mit/xorg/bin/ssh-askpass/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.1.1.1 2008/07/29 05:01:22 mrg Exp $
# $NetBSD: Makefile,v 1.2 2008/10/25 22:27:34 apb Exp $

NOMAN= yes

Expand Down Expand Up @@ -32,7 +32,7 @@ CLEANFILES+= SshAskpass_ad.h
SshAskpass_ad.h: SshAskpass.ad
${_MKTARGET_CREATE}
rm -f ${.TARGET}
sed -n '/^[^!]/s/.*/"&",/p' <${.ALLSRC} > ${.TARGET}
${TOOL_SED} -n '/^[^!]/s/.*/"&",/p' <${.ALLSRC} > ${.TARGET}

LDADD+= -lXt -lSM -lICE -lXext -lX11
DPADD+= ${LIBXT} ${LIBSM} ${LIBICE} ${LIBXEXT} ${LIBX11}
Expand Down
4 changes: 2 additions & 2 deletions external/mit/xorg/bin/twm/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.2 2008/10/14 23:37:19 cube Exp $
# $NetBSD: Makefile,v 1.3 2008/10/25 22:27:34 apb Exp $

.include <bsd.own.mk>

Expand Down Expand Up @@ -34,7 +34,7 @@ deftwmrc.c: system.twmrc deftwmrc.sed
echo ' * twm bindings file system.twmrc by the twm Makefile.' >>$@
echo ' */' >>$@
echo 'char *defTwmrc[] = {' >>$@
sed -f ${TWMDIR}/src/deftwmrc.sed \
${TOOL_SED} -f ${TWMDIR}/src/deftwmrc.sed \
< ${TWMDIR}/src/system.twmrc >>$@
echo ' (char *) 0 };' >>$@

Expand Down
5 changes: 3 additions & 2 deletions external/mit/xorg/share/fonts/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.2 2008/08/30 07:15:17 rtr Exp $
# $NetBSD: Makefile,v 1.3 2008/10/25 22:27:34 apb Exp $

.include <bsd.own.mk>

Expand All @@ -15,7 +15,8 @@ afterinstall:
.if ${MKUNPRIVED} != "no"
cd ${DESTDIR} \
&& find ./${X11FONTDIR} -name fonts.cache-1 \
| sed -e 's/$$/ type=file mode=0444 uname=${BINOWN} gname=${BINGRP}/' \
| ${TOOL_SED} -e \
's/$$/ type=file mode=0444 uname=${BINOWN} gname=${BINGRP}/' \
| ${METALOG.add}
.endif
.endif
Expand Down
5 changes: 3 additions & 2 deletions external/mit/xorg/share/fonts/Makefile.fccache
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# $NetBSD: Makefile.fccache,v 1.1.1.1 2008/07/29 05:01:23 mrg Exp $
# $NetBSD: Makefile.fccache,v 1.2 2008/10/25 22:27:34 apb Exp $

.ifndef _MAKEFILE_FCCACHE_
_MAKEFILE_FCCACHE_=1
Expand All @@ -13,7 +13,8 @@ afterinstall:
.if ${MKUNPRIVED} != "no"
cd ${DESTDIR} \
&& find ./${X11FONTDIR} -name fonts.cache-1 \
| sed -e 's/$$/ type=file mode=0444 uname=${BINOWN} gname=${BINGRP}/' \
| ${TOOL_SED} -e \
's/$$/ type=file mode=0444 uname=${BINOWN} gname=${BINGRP}/' \
| ${METALOG.add}
.endif

Expand Down
7 changes: 4 additions & 3 deletions external/mit/xorg/share/nls/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.1.1.1 2008/07/29 05:01:23 mrg Exp $
# $NetBSD: Makefile,v 1.2 2008/10/25 22:27:35 apb Exp $

.include <bsd.own.mk>

Expand Down Expand Up @@ -34,7 +34,8 @@ ${_F}.lt: ${_F}.pre
( \
${CPP} -undef -traditional \
< ${.ALLSRC} | ${X11TOOL_UNXCOMM} \
| sed -e '/^[^#][^ ]*:/s/://' -e '/^[^#].*[ ].*:/d'; \
| ${TOOL_SED} -e \
'/^[^#][^ ]*:/s/://' -e '/^[^#].*[ ].*:/d'; \
${CPP} -undef -traditional \
< ${.ALLSRC} | ${X11TOOL_UNXCOMM} ; \
) > ${.TARGET}
Expand All @@ -58,6 +59,6 @@ realall: ${FILES}
build_subdirs:
.for _dir in ${SUBDIR}
mkdir ${.CURDIR}/${_dir}
printf '# $$NetBSD: Makefile,v 1.1.1.1 2008/07/29 05:01:23 mrg Exp $$\n\nNLS_SUBDIR= ${_dir}\n\n.include "../Makefile.nls"\n' > ${.CURDIR}/${_dir}/Makefile
printf '# $$NetBSD: Makefile,v 1.2 2008/10/25 22:27:35 apb Exp $$\n\nNLS_SUBDIR= ${_dir}\n\n.include "../Makefile.nls"\n' > ${.CURDIR}/${_dir}/Makefile

.endfor
16 changes: 8 additions & 8 deletions gnu/lib/libbfd/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.43 2008/04/20 07:11:22 mrg Exp $
# $NetBSD: Makefile,v 1.44 2008/10/25 22:27:35 apb Exp $

NOLINKLIB= # defined
NOLINT= # defined
Expand Down Expand Up @@ -54,28 +54,28 @@ targets.o targets.so: targmatch.h Makefile

targmatch.h: config.bfd targmatch.sed
${_MKTARGET_CREATE}
sed -f ${.ALLSRC:M*.sed} ${.ALLSRC:M*.bfd} >$@
${TOOL_SED} -f ${.ALLSRC:M*.sed} ${.ALLSRC:M*.bfd} >$@

elf32-target.h: elfxx-target.h
${_MKTARGET_CREATE}
sed -e s/NN/32/g < $> > $@
${TOOL_SED} -e s/NN/32/g < $> > $@

elf64-target.h: elfxx-target.h
${_MKTARGET_CREATE}
sed -e s/NN/64/g < $> > $@
${TOOL_SED} -e s/NN/64/g < $> > $@

elf32-ia64.c: elfxx-ia64.c
${_MKTARGET_CREATE}
sed -e s/NN/32/g < $> > $@
${TOOL_SED} -e s/NN/32/g < $> > $@

elf64-ia64.c: elfxx-ia64.c
${_MKTARGET_CREATE}
sed -e s/NN/64/g < $> > $@
${TOOL_SED} -e s/NN/64/g < $> > $@

peigen.c: peXXigen.c
${_MKTARGET_CREATE}
sed -e s/XX/pe/g < $> > $@
${TOOL_SED} -e s/XX/pe/g < $> > $@

pepigen.c: peXXigen.c
${_MKTARGET_CREATE}
sed -e s/XX/pep/g < $> > $@
${TOOL_SED} -e s/XX/pep/g < $> > $@
5 changes: 3 additions & 2 deletions gnu/lib/libgcc4/libgcc_s/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.6 2008/10/19 22:05:20 apb Exp $
# $NetBSD: Makefile,v 1.7 2008/10/25 22:27:35 apb Exp $

REQUIRETOOLS= yes
NOLINT= # defined
Expand Down Expand Up @@ -41,7 +41,8 @@ libgcc.map: ${LIBGCC_S_OBJS} ${G_SHLIB_MKMAP} ${G_SHLIB_MAPFILES}
${NM} ${G_SHLIB_NM_FLAGS} ${LIBGCC_S_OBJS}; \
echo %%; \
cat ${G_SHLIB_MAPFILES} | \
sed -e "/^[ ]*#/d" -e 's/^%\(if\|else\|elif\|endif\|define\)/#\1/' | \
${TOOL_SED} -e "/^[ ]*#/d" \
-e 's/^%\(if\|else\|elif\|endif\|define\)/#\1/' | \
${CC} ${G_LIBGCC2_CFLAGS} ${G_INCLUDES} -E -xassembler-with-cpp -; \
} | ${TOOL_AWK} -f ${G_SHLIB_MKMAP} > ${.TARGET}.tmp
mv ${.TARGET}.tmp ${.TARGET}
Expand Down
4 changes: 2 additions & 2 deletions gnu/usr.bin/binutils/c++filt/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.14 2003/10/21 10:01:20 lukem Exp $
# $NetBSD: Makefile,v 1.15 2008/10/25 22:27:35 apb Exp $

PROG= c++filt
CPPFLAGS+= -DMAIN
Expand All @@ -12,4 +12,4 @@ CLEANFILES+= c++filt.1

c++filt.1: ${DIST}/binutils/doc/cxxfilt.man
${_MKTARGET_CREATE}
sed -e "s/@PROGRAM@/${PROG}/" < $> > $@
${TOOL_SED} -e "s/@PROGRAM@/${PROG}/" < $> > $@
Loading

0 comments on commit f34d4fd

Please sign in to comment.