diff options
author | Matthias Klose <doko@ubuntu.com> | 2010-04-25 21:23:32 +0000 |
---|---|---|
committer | Matthias Klose <doko@ubuntu.com> | 2010-04-25 21:23:32 +0000 |
commit | 80b09d49c147e202f5e2a82b6b30ddb8454d10e9 (patch) | |
tree | c2963cba695bd6ebfb442b7362e7487570af4191 | |
parent | bada4c39a12c8cd75c5270a53b090a8bdef867ac (diff) | |
download | cpython-git-80b09d49c147e202f5e2a82b6b30ddb8454d10e9.tar.gz |
Makefile.pre.in (autoconf): Call autoconf/autoheader with -Wall (issue #8510).
-rw-r--r-- | Makefile.pre.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index a5e8787ccb..745c4a7c7b 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1140,8 +1140,8 @@ recheck: # Rebuild the configure script from configure.in; also rebuild pyconfig.h.in autoconf: - (cd $(srcdir); autoconf) - (cd $(srcdir); autoheader) + (cd $(srcdir); autoconf -Wall) + (cd $(srcdir); autoheader -Wall) # Create a tags file for vi tags:: |