diff options
author | Guido van Rossum <guido@python.org> | 1996-06-28 20:15:41 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-06-28 20:15:41 (GMT) |
commit | 0068267750c42c20602dcbc6ff52183cab57c3a8 (patch) | |
tree | 2a53cfbbc56004ba1d8ab7cbf22473969e8e9c9c /Makefile.in | |
parent | 6f489d989d947169e70a8668cd265780a0a13d5e (diff) | |
download | cpython-0068267750c42c20602dcbc6ff52183cab57c3a8.zip cpython-0068267750c42c20602dcbc6ff52183cab57c3a8.tar.gz cpython-0068267750c42c20602dcbc6ff52183cab57c3a8.tar.bz2 |
split autoconf target in two
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index b17c76a..da06c25 100644 --- a/Makefile.in +++ b/Makefile.in @@ -278,7 +278,8 @@ recheck: # Rebuild the configure script from configure.in; also rebuild config.h.in autoconf: - (cd $(srcdir); autoconf; autoheader) + (cd $(srcdir); autoconf) + (cd $(srcdir); autoheader) # Create a tags file for vi tags:: |