summaryrefslogtreecommitdiffstats
path: root/make/custom/bare.cfg
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-03-11 20:50:58 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-03-11 20:50:58 +0000
commitb1a66feaa389530ca152a4dcc868db652e3883c9 (patch)
treef0a1f2b85ee451b6e217da20664682c8c40f9cdc /make/custom/bare.cfg
parent2008-03-11 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-b1a66feaa389530ca152a4dcc868db652e3883c9.tar.bz2
2008-03-11 Joel Sherrill <joel.sherrill@OARcorp.com>
* custom/av5282.cfg, custom/bare.cfg, custom/default.cfg, custom/gba.cfg, custom/gp32.cfg, custom/i386ex.cfg, custom/idp.cfg, custom/mbx8xx.cfg, custom/mcf5235.cfg, custom/mcp750.cfg, custom/mrm332.cfg, custom/mtx603e.cfg, custom/mvme136.cfg, custom/mvme147.cfg, custom/mvme162.cfg, custom/mvme162lx.cfg, custom/mvme167.cfg, custom/mvme2100.cfg, custom/mvme2307.cfg, custom/mvme3100.cfg, custom/mvme5500.cfg, custom/nios2_iss.cfg, custom/pc386.cfg, custom/posix.cfg, custom/score603e.cfg, custom/sim68000.cfg, custom/simcpu32.cfg, custom/ss555.cfg, custom/ts_386ex.cfg, custom/uC5282.cfg, custom/virtex.cfg: Switch to explicit .exe instead of EXEEXT to get it to work.
Diffstat (limited to 'make/custom/bare.cfg')
-rw-r--r--make/custom/bare.cfg8
1 files changed, 4 insertions, 4 deletions
diff --git a/make/custom/bare.cfg b/make/custom/bare.cfg
index 18757b985e..1c3c641018 100644
--- a/make/custom/bare.cfg
+++ b/make/custom/bare.cfg
@@ -28,14 +28,14 @@ START_BASE=
define make-exe
@echo "*** Cannot do a link with the bare bsp. ***"
- @echo "#!/bin/sh" > $(basename $@)$(EXEEXT)
- @echo "echo \"Cannot do a link with the bare bsp.\"" >> $(basename $@)$(EXEEXT)
+ @echo "#!/bin/sh" > $(basename $@).exe
+ @echo "echo \"Cannot do a link with the bare bsp.\"" >> $(basename $@).exe
endef
define make-cxx-exe
@echo "*** Cannot do a link with the bare bsp. ***"
- @echo "#!/bin/sh" > $(basename $@)$(EXEEXT)
- @echo "echo \"Cannot do a link with the bare bsp.\"" >> $(basename $@)$(EXEEXT)
+ @echo "#!/bin/sh" > $(basename $@).exe
+ @echo "echo \"Cannot do a link with the bare bsp.\"" >> $(basename $@).exe
endef
# Miscellaneous additions go here