Fix Ada bootstrap with Solaris /bin/ksh

* gcc-interface/Make-lang.in (ADA_DEPS): Fix quoting.

From-SVN: r204005
This commit is contained in:
Rainer Orth 2013-10-24 08:51:51 +00:00 committed by Rainer Orth
parent 18aa2b0407
commit 2f9bcd4452
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2013-10-24 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* gcc-interface/Make-lang.in (ADA_DEPS): Fix quoting.
2013-10-19 Thomas Quinot <quinot@adacore.com>
* gcc-interface/Makefile.in: Use canonical absolute path to refer to

View File

@ -110,7 +110,7 @@ ADA_DEPS=case $@ in \
*sdefault.o);; \
*)a="`echo $@ | sed -e 's/.o$$/.ali/'`"; \
echo "$@: `cat $$a | \
sed -ne "s;^D \([a-z0-9_\.-]*\).*;ada/\1;gp" | \
sed -ne 's;^D \([a-z0-9_\.-]*\).*;ada/\1;gp' | \
tr -d '\015' | tr '\n' ' '`" > $(dir $@)/$(DEPDIR)/$(patsubst %.o,%.Po,$(notdir $@));; \
esac;