diff options
| author | apb <apb@NetBSD.org> | 2008-10-25 22:27:34 +0000 |
|---|---|---|
| committer | apb <apb@NetBSD.org> | 2008-10-25 22:27:34 +0000 |
| commit | f46c1de7cbdec5bc8a818069ff8760cb0b3581d2 (patch) | |
| tree | 5c3118f28e2161d36621caa1dc75ffe469312e1f /gnu/lib/libbfd | |
| parent | 89799ead73e9671c68327c04a475cc5762a86697 (diff) | |
Use ${TOOL_SED} instead if plain sed in Makefiles.
Diffstat (limited to 'gnu/lib/libbfd')
| -rw-r--r-- | gnu/lib/libbfd/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gnu/lib/libbfd/Makefile b/gnu/lib/libbfd/Makefile index 8dc6ad5ba55..20b68842a4f 100644 --- a/gnu/lib/libbfd/Makefile +++ b/gnu/lib/libbfd/Makefile @@ -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 @@ -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 < $> > $@ |
