diff options
author | Nick Clifton <nickc@redhat.com> | 2008-07-29 13:53:02 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2008-07-29 13:53:02 +0000 |
commit | 086c6838fab1ebd605b03d14e4fbd7a31a86062d (patch) | |
tree | bc2f3401e007981506381e15cc53e570748a3f63 /sim/m32r | |
parent | 97f056de8975fdf97f55f4daa5c454c4320d9aef (diff) | |
download | gdb-086c6838fab1ebd605b03d14e4fbd7a31a86062d.zip gdb-086c6838fab1ebd605b03d14e4fbd7a31a86062d.tar.gz gdb-086c6838fab1ebd605b03d14e4fbd7a31a86062d.tar.bz2 |
* common/genmloop.sh: Add new parameter: -shell to specify the
command interpreter to use to run the input file. This is
necessary because otherwise SHELL is taken from the user's
environment, and not from the makefile that invoked this script
and the user might not be running an sh-like shell.
* cris/Makefile.in: Pass -shell parameter to genmloop.sh.
* fr30/Makefile.in: Likewise.
* frv/Makefile.in: Likewise.
* i960/Makefile.in: Likewise.
* iq2000/Makefile.in: Likewise.
* m32r/Makefile.in: Likewise.
* frv/mloop.in: Add missing start of line comment marker.
Diffstat (limited to 'sim/m32r')
-rw-r--r-- | sim/m32r/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sim/m32r/Makefile.in b/sim/m32r/Makefile.in index 148b8ba..f63cc4c 100644 --- a/sim/m32r/Makefile.in +++ b/sim/m32r/Makefile.in @@ -81,7 +81,7 @@ m32r.o: m32r.c $(M32RBF_INCLUDE_DEPS) # FIXME: Use of `mono' is wip. mloop.c eng.h: stamp-mloop stamp-mloop: $(srcdir)/../common/genmloop.sh mloop.in Makefile - $(SHELL) $(srccom)/genmloop.sh \ + $(SHELL) $(srccom)/genmloop.sh -shell $(SHELL) \ -mono -fast -pbb -switch sem-switch.c \ -cpu m32rbf -infile $(srcdir)/mloop.in $(SHELL) $(srcroot)/move-if-change eng.hin eng.h @@ -105,7 +105,7 @@ m32rx.o: m32rx.c $(M32RXF_INCLUDE_DEPS) # FIXME: Use of `mono' is wip. mloopx.c engx.h: stamp-xmloop stamp-xmloop: $(srcdir)/../common/genmloop.sh mloopx.in Makefile - $(SHELL) $(srccom)/genmloop.sh \ + $(SHELL) $(srccom)/genmloop.sh -shell $(SHELL) \ -mono -no-fast -pbb -parallel-write -switch semx-switch.c \ -cpu m32rxf -infile $(srcdir)/mloopx.in \ -outfile-suffix x @@ -130,7 +130,7 @@ m32r2.o: m32r2.c $(M32R2F_INCLUDE_DEPS) # FIXME: Use of `mono' is wip. mloop2.c eng2.h: stamp-2mloop stamp-2mloop: $(srcdir)/../common/genmloop.sh mloop2.in Makefile - $(SHELL) $(srccom)/genmloop.sh \ + $(SHELL) $(srccom)/genmloop.sh -shell $(SHELL) \ -mono -no-fast -pbb -parallel-write -switch sem2-switch.c \ -cpu m32r2f -infile $(srcdir)/mloop2.in \ -outfile-suffix 2 |