summaryrefslogtreecommitdiffstats
path: root/make/custom/mvme167.cfg
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2001-10-11 16:36:41 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2001-10-11 16:36:41 +0000
commita7681683d0aa6be019ac332dd83dd2b499790653 (patch)
tree233873f6b3ea94e0943beb873215db430992c60b /make/custom/mvme167.cfg
parent2001-10-11 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-a7681683d0aa6be019ac332dd83dd2b499790653.tar.bz2
2001-10-11 Joel Sherrill <joel@OARcorp.com>
* custom/mbx8xx.cfg, custom/mvme167.cfg: Rewrote use of strip command to avoid using the apparently broken or deprecated -o argument.
Diffstat (limited to 'make/custom/mvme167.cfg')
-rw-r--r--make/custom/mvme167.cfg6
1 files changed, 4 insertions, 2 deletions
diff --git a/make/custom/mvme167.cfg b/make/custom/mvme167.cfg
index 2c07c8bb81..a5fa226015 100644
--- a/make/custom/mvme167.cfg
+++ b/make/custom/mvme167.cfg
@@ -86,7 +86,8 @@ define make-exe
$(LD) $(LDFLAGS) -N -T $(LINKCMDS) -o $(basename $@)_sym.exe \
$(START_FILE) $(LINK_OBJS) --start-group $(LINK_LIBS) --end-group
$(NM) -g -n $(basename $@)_sym.exe > $(basename $@).nm
- $(STRIP) -o $(basename $@).exe $(basename $@)_sym.exe
+ cp $(basename $@)_sym.exe $(basename $@).exe
+ $(STRIP) $(basename $@).exe
$(SIZE) $(basename $@)_sym.exe
endef
else
@@ -94,7 +95,8 @@ define make-exe
$(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $(basename $@)_sym.exe \
$(LINK_OBJS) $(LINK_LIBS)
$(NM) -g -n $(basename $@)_sym.exe > $(basename $@).nm
- $(STRIP) -o $(basename $@).exe $(basename $@)_sym.exe
+ cp $(basename $@)_sym.exe $(basename $@).exe
+ $(STRIP) $(basename $@).exe
$(SIZE) $(basename $@)_sym.exe
endef
endif