diff options
author | pme <pme@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-12-16 23:44:53 +0000 |
---|---|---|
committer | pme <pme@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-12-16 23:44:53 +0000 |
commit | 9745c002ab15b8bd5a917f0d559eae3dcf8d2b2f (patch) | |
tree | ce6418aac2d22bcf55409cc91a62c3e299286212 /libstdc++-v3/configure.ac | |
parent | 31d99264982894f55ed81b21ad7e5bc054d712b8 (diff) | |
download | gcc-9745c002ab15b8bd5a917f0d559eae3dcf8d2b2f.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@74718 138bc75d-0d04-0410-961f-82ee72b054a4
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 fc635b8f4d4..1efb084f6a8 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. |