]> sourceware.org Git - automake.git/commitdiff
2002-06-05 Miloslav Trmac <trmac@popelka.ms.mff.cuni.cz>
authorAlexandre Duret-Lutz <adl@gnu.org>
Wed, 5 Jun 2002 09:06:11 +0000 (09:06 +0000)
committerAlexandre Duret-Lutz <adl@gnu.org>
Wed, 5 Jun 2002 09:06:11 +0000 (09:06 +0000)
* lib/am/dejagnu.am (site.exp): Quote build_alias, host_alias, and
target_alias.

ChangeLog
THANKS
lib/am/dejagnu.am

index bcb47a42d8e05530e8c7aa105173e8ef9d489ecd..e11000f01c38696538395b0ff17f044c6c78ddc6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-06-05  Miloslav Trmac  <trmac@popelka.ms.mff.cuni.cz>
+
+       * lib/am/dejagnu.am (site.exp): Quote build_alias, host_alias, and
+       target_alias.
+
 2002-05-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
 
        * Makefile.am (maintainer-check): Check for egrep and fgrep.
@@ -13,7 +18,7 @@
        (subobjname): Expect a list of condition/value pairs as input.
        Combine this list and use it as the key to determine the variable name.
        * test/cond22.test: New file.
-       * tests/Makefile.am (TESTS): Add cond21.test
+       * tests/Makefile.am (TESTS): Add cond22.test
 
 2002-05-30  Paul Eggert  <eggert@twinsun.com>
 
diff --git a/THANKS b/THANKS
index 9dbeea5439379e133ac5386d2c112ae4b959f7f2..1ac83599cfbc584855d934492298ff4f938fffcb 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -120,6 +120,7 @@ Merijn de Jonge             M.de.Jonge@cwi.nl
 Michael Brantley       Michael-Brantley@deshaw.com
 Michel de Ruiter       mdruiter@cs.vu.nl
 Miles Bader            miles@ccs.mt.nec.co.jp
+Miloslav Trmac         trmac@popelka.ms.mff.cuni.cz
 Miodrag Vallat         miodrag@ifrance.com
 Morten Eriksen         mortene@sim.no
 Motoyuki Kasahara      m-kasahr@sra.co.jp
index fa1cdf07e6699d08eac5428522779c8699d829a8..7f8c378c655e048a1f2367ad5cbd07a177499fad 100644 (file)
@@ -82,11 +82,12 @@ site.exp: Makefile
        @echo 'set tool $(DEJATOOL)' >>site.tmp
        @echo 'set srcdir $(srcdir)' >>site.tmp
        @echo "set objdir `pwd`" >>site.tmp
-?BUILD?        @echo 'set build_alias $(build_alias)' >>site.tmp
+## Quote the *_alias variables because they might be empty.
+?BUILD?        @echo 'set build_alias "$(build_alias)"' >>site.tmp
 ?BUILD?        @echo 'set build_triplet $(build_triplet)' >>site.tmp
-?HOST? @echo 'set host_alias $(host_alias)' >>site.tmp
+?HOST? @echo 'set host_alias "$(host_alias)"' >>site.tmp
 ?HOST? @echo 'set host_triplet $(host_triplet)' >>site.tmp
-?TARGET?       @echo 'set target_alias $(target_alias)' >>site.tmp
+?TARGET?       @echo 'set target_alias "$(target_alias)"' >>site.tmp
 ?TARGET?       @echo 'set target_triplet $(target_triplet)' >>site.tmp
        @echo '## All variables above are generated by configure. Do Not Edit ##' >>site.tmp
        @test ! -f site.exp || \
This page took 0.032748 seconds and 5 git commands to generate.