* automake.in (require_file_internal): Correctly examine return
authorTom Tromey <tromey@redhat.com>
Fri, 22 Jan 1999 14:18:11 +0000 (14:18 +0000)
committerTom Tromey <tromey@redhat.com>
Fri, 22 Jan 1999 14:18:11 +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 6501b6f..4faf457 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 498dfcc..5ee0e76 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 c0d7f4f..090ca1e 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";