From 1733044b521a737cc9f4bcaa96c57472546a13a6 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Fri, 22 Jan 1999 14:18:09 +0000 Subject: [PATCH] * 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. --- ChangeLog | 5 ++++- THANKS | 1 + automake.in | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6501b6f7..4faf4572 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,9 +1,12 @@ 1999-01-22 Tom Tromey + * 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 498dfccb..5ee0e761 100644 --- 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 diff --git a/automake.in b/automake.in index c0d7f4ff..090ca1e5 100755 --- a/automake.in +++ b/automake.in @@ -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"; -- 2.43.5