diff options
author | Phil Edwards <phil@codesourcery.com> | 2003-12-16 23:44:53 +0000 |
---|---|---|
committer | Phil Edwards <pme@gcc.gnu.org> | 2003-12-16 23:44:53 +0000 |
commit | 2d52e9e364f9690aff0edd7e6bb7fdc6d63ef236 (patch) | |
tree | ce6418aac2d22bcf55409cc91a62c3e299286212 /libstdc++-v3/configure.ac | |
parent | da2fd9486bd98bcef61a94ebc8abd536c10d682d (diff) | |
download | gcc-2d52e9e364f9690aff0edd7e6bb7fdc6d63ef236.zip gcc-2d52e9e364f9690aff0edd7e6bb7fdc6d63ef236.tar.gz gcc-2d52e9e364f9690aff0edd7e6bb7fdc6d63ef236.tar.bz2 |
configure.ac (AM_INIT_AUTOMAKE): Don't warn about GNU Make.
2003-12-16 Phil Edwards <phil@codesourcery.com>
* configure.ac (AM_INIT_AUTOMAKE): Don't warn about GNU Make.
* configure: Regenerated.
* Makefile.am (check-%): New catch-all forwarding target.
* Makefile.in: Regenerated.
From-SVN: r74718
Diffstat (limited to 'libstdc++-v3/configure.ac')
-rw-r--r-- | libstdc++-v3/configure.ac | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libstdc++-v3/configure.ac b/libstdc++-v3/configure.ac index fc635b8..1efb084 100644 --- a/libstdc++-v3/configure.ac +++ b/libstdc++-v3/configure.ac @@ -56,8 +56,9 @@ fi # foreign: we don't follow the normal rules for GNU packages (no COPYING # file in the top srcdir, etc, etc), so stop complaining. # no-dependencies: turns off auto dependency generation (just for now) -# -Wall: turns on all automake warnings -AM_INIT_AUTOMAKE([1.7.6 no-define foreign no-dependencies -Wall]) +# -Wall: turns on all automake warnings... +# -Wno-portability: ...except this one, since GNU make is now required. +AM_INIT_AUTOMAKE([1.7.6 no-define foreign no-dependencies -Wall -Wno-portability]) # Runs configure.host, finds CC, CXX, and assorted other critical bits. Sets # up critical shell variables. |