Re: --Werror and --add-missing don't work toghether

2001-04-07 Thread Tom Tromey
> "Pavel" == Pavel Roskin <[EMAIL PROTECTED]> writes: Pavel> CVS Automake uses am_line_error() to inform the user that it's Pavel> installing files. As a result, --Werror causes Automake to exit Pavel> after it installs the first file: I submitted a PR about this in your name. Thanks. Tom

--Werror and --add-missing don't work toghether

2001-03-13 Thread Pavel Roskin
Hello! CVS Automake uses am_line_error() to inform the user that it's installing files. As a result, --Werror causes Automake to exit after it installs the first file: $ automake --Werror --add-missing; echo $? automake: Makefile.am: installing `./INSTALL' 2 $ automake --Werror --add-missing; ec