]> sourceware.org Git - automake.git/commitdiff
* automake.in (require_file_internal): Correctly examine return
authorTom Tromey <tromey@redhat.com>
Fri, 22 Jan 1999 14:18:09 +0000 (14:18 +0000)
committerTom Tromey <tromey@redhat.com>
Fri, 22 Jan 1999 14:18:09 +0000 (14:18 +0000)
value of `system'.  From Andris Pavenis.  Fixes copy.test.
* m4/init.m4 (AM_INIT_AUTOMAKE): Require autoconf 2.13.

ChangeLog
THANKS
automake.in

index 6501b6f761ff0511438ab073d4718af67ace24b3..4faf4572ce054a094f38aa0ee62e8e8bdb658a89 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,9 +1,12 @@
 1999-01-22  Tom Tromey  <tromey@cygnus.com>
 
+       * automake.in (require_file_internal): Correctly examine return
+       value of `system'.  From Andris Pavenis.  Fixes copy.test.
+
        * m4/init.m4 (AM_INIT_AUTOMAKE): Require autoconf 2.13.
 
        * automake.in (lang_ppf77_rewrite): New function.  From Jochen
-       Kuepper.
+       Kuepper.  Fixes ppf77.test.
        (lang_ratfor_rewrite): New function
 
        * automake.in (handle_configure): Use `&' before sub calls (Perl 4
diff --git a/THANKS b/THANKS
index 498dfccb2f75f02a36ea6cbace195a483f7b710e..5ee0e76170f091b986a82bc3eb1e0657075957aa 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -7,6 +7,7 @@ Alexander V. Lukyanov   lav@yars.free.net
 Alexandre Oliva                oliva@dcc.unicamp.br
 Andreas Schwab         schwab@lamothe.informatik.uni-dortmund.de
 Andrew Cagney          cagney@tpgi.com.au
+Andris Pavenis         pavenis@lanet.lv
 Anthony Green          green@cygnus.com
 Assar Westerlund       assar@sics.se
 Bernard Urban          Bernard.Urban@meteo.fr
index c0d7f4ff20fd104a4eb4bfb3727859170ab32d5a..090ca1e597581e09533068b151f575bc325b9c8a 100755 (executable)
@@ -6919,7 +6919,7 @@ sub require_file_internal
                                $trailer = "; error while making link: $!\n";
                            }
                        }
-                       elsif (system ('cp', $am_dir . '/' . $file, $errfile))
+                       elsif (system ('cp', $am_dir . '/' . $file, $errfile))
                        {
                            $suppress = 0;
                            $trailer = "\n    error while copying\n";
This page took 0.051409 seconds and 5 git commands to generate.