From: Tom Tromey Date: Mon, 23 Jun 1997 01:40:16 +0000 (+0000) Subject: "installing" fixlet X-Git-Tag: Release-1-2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7e0cef3009583795fdd46090c5ff62a23e94bbba;p=thirdparty%2Fautomake.git "installing" fixlet --- diff --git a/ChangeLog b/ChangeLog index 65cbca158..dd4245a26 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ Sun Jun 22 14:01:59 1997 Tom Tromey + * automake.in (require_file_internal): Only print "installing" + when actually installing. From Gord Matzigkeit. + * automake.in (handle_tests): Exit status `77' means `ignore test'. From François Pinard. (handle_tests) Also, make banner same size as text. diff --git a/automake.in b/automake.in index 7ef4c8948..2527a051a 100755 --- a/automake.in +++ b/automake.in @@ -5773,7 +5773,6 @@ sub require_file_internal # strictness level. if ($add_missing) { - $trailer = "; installing"; $suppress = 1; # Maybe run libtoolize. @@ -5781,6 +5780,7 @@ sub require_file_internal && grep ($_ eq $file, @libtoolize_files) && system ('libtoolize', '--automake')) { + $trailer = "; installing"; $suppress = 0; $trailer .= "; cannot run \`libtoolize': $!"; } @@ -5789,6 +5789,7 @@ sub require_file_internal # Install the missing file. Symlink if we # can, copy if we must. Note: delete the file # first, in case it is a dangling symlink. + $trailer = "; installing"; unlink ($errfile); if ($symlink_exists) {