summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2001-05-25 17:35:56 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2001-05-25 17:35:56 +0000
commit88249fa07407fc9debb7bbb839ad007225d8ad1d (patch)
tree872a0ddd626914fc542bc94cd71b2d43adc194e5
parent2001-05-25 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-88249fa07407fc9debb7bbb839ad007225d8ad1d.tar.bz2
2001-05-25 Joel Sherrill <joel@OARcorp.com>
* custom/mrm332.cfg: Switched $(SED) to sed.
-rw-r--r--make/ChangeLog4
-rw-r--r--make/custom/mrm332.cfg4
2 files changed, 6 insertions, 2 deletions
diff --git a/make/ChangeLog b/make/ChangeLog
index 89296ee64e..307333f518 100644
--- a/make/ChangeLog
+++ b/make/ChangeLog
@@ -1,4 +1,8 @@
+2001-05-25 Joel Sherrill <joel@OARcorp.com>
+
+ * custom/mrm332.cfg: Switched $(SED) to sed.
+
2000-05-25 Matt Cross <profesor@gweep.net>
* New MRM332 BSP for the Mini RoboMind board based
diff --git a/make/custom/mrm332.cfg b/make/custom/mrm332.cfg
index c7938a16c3..6f08be0130 100644
--- a/make/custom/mrm332.cfg
+++ b/make/custom/mrm332.cfg
@@ -70,7 +70,7 @@ define make-exe
END { printf("0x%x", h2d(base) + h2d(size)) }'\
` $(basename $@).pxe $(basename $@).nxe
$(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 $@).pxe > $(basename $@).pnum
$(NM) -g -n $(basename $@).nxe > $(basename $@).num
@@ -81,7 +81,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) > $(basename $@).exe
$(NM) -g -n $(basename $@).nxe > $(basename $@).num
$(SIZE) $(basename $@).nxe