summaryrefslogtreecommitdiffstats
path: root/make/custom/dmv152.cfg
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-08-01 14:21:40 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-08-01 14:21:40 +0000
commit8725d7cce37febd034f48d362029d8c865e25253 (patch)
tree15e93f51a6ae070f1410dddb9210ec1ddd5b6c95 /make/custom/dmv152.cfg
parentPatch rtems-rc-20000801-1-cvs.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-8725d7cce37febd034f48d362029d8c865e25253.tar.bz2
Patch rtems-rc-20000731-2-cvs.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>
that does the following: Changes: Remove $(SED) and $(CP) from make/custom/*.cfg Motivation: * autoconf and automake presuppose sed and cp to be present. * make/host.cfg.in already contains SED = sed hard-coded into it for a long time. * Elimination of make-variables * Eliminate make/*.cfg files or at least reduce their complexity :)
Diffstat (limited to 'make/custom/dmv152.cfg')
-rw-r--r--make/custom/dmv152.cfg4
1 files changed, 2 insertions, 2 deletions
diff --git a/make/custom/dmv152.cfg b/make/custom/dmv152.cfg
index aeae57065b..b9cb7a3c5b 100644
--- a/make/custom/dmv152.cfg
+++ b/make/custom/dmv152.cfg
@@ -51,7 +51,7 @@ define make-exe
$(LD) $(LDFLAGS) -N -T $(LINKCMDS) -o $(basename $@).nxe \
$(START_FILE) $(LINK_OBJS) --start-group $(LINK_LIBS) --end-group
$(OBJCOPY) -O srec $(basename $@).nxe $(basename $@).i
- $(SED) -e 's/.$$//' -e '/^S0/d' $(basename $@).i | \
+ sed -e 's/.$$//' -e '/^S0/d' $(basename $@).i | \
$(PACKHEX) > $(basename $@).exe
$(NM) -g -n $(basename $@).nxe > $(basename $@).num
$(SIZE) $(basename $@).nxe
@@ -61,7 +61,7 @@ define make-exe
$(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $(basename $@).nxe \
$(LINK_OBJS) $(LINK_LIBS)
$(OBJCOPY) -O srec $(basename $@).nxe $(basename $@).i
- $(SED) -e 's/.$$//' -e '/^S0/d' $(basename $@).i | \
+ sed -e 's/.$$//' -e '/^S0/d' $(basename $@).i | \
$(PACKHEX) > $@
$(NM) -g -n $(basename $@).nxe > $(basename $@).num
$(SIZE) $(basename $@).nxe