diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2001-07-26 13:41:06 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2001-07-26 13:41:06 (GMT) |
commit | 4f1cd8bdcbd20bb0acdbe9e240f28c09dd38370f (patch) | |
tree | 06e19685ad77879ee4df995bf669235489786995 /Makefile.pre.in | |
parent | 4eb5940a4d350d250ab4af08a8b5b6e553e1814d (diff) | |
download | cpython-4f1cd8bdcbd20bb0acdbe9e240f28c09dd38370f.zip cpython-4f1cd8bdcbd20bb0acdbe9e240f28c09dd38370f.tar.gz cpython-4f1cd8bdcbd20bb0acdbe9e240f28c09dd38370f.tar.bz2 |
Patch #411138: Rename config.h to pyconfig.h. Closes bug #231774.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 139be8b..3ca3397 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -118,7 +118,7 @@ SRCDIRS= @SRCDIRS@ SUBDIRSTOO= Include Lib Misc Demo # Files and directories to be distributed -CONFIGFILES= configure configure.in acconfig.h config.h.in Makefile.pre.in +CONFIGFILES= configure configure.in acconfig.h pyconfig.h.in Makefile.pre.in DISTFILES= README ChangeLog $(CONFIGFILES) DISTDIRS= $(SUBDIRS) $(SUBDIRSTOO) Ext-dummy DIST= $(DISTFILES) $(DISTDIRS) @@ -417,7 +417,7 @@ Mac/Python/macglue.o: $(srcdir)/Mac/Python/macglue.c PYTHON_HEADERS= \ Include/Python.h \ - config.h \ + pyconfig.h \ Include/patchlevel.h \ Include/pyport.h \ Include/pymem.h \ @@ -650,7 +650,7 @@ inclinstall: echo $(INSTALL_DATA) $$i $(INCLUDEPY); \ $(INSTALL_DATA) $$i $(INCLUDEPY); \ done - $(INSTALL_DATA) config.h $(CONFINCLUDEPY)/config.h + $(INSTALL_DATA) pyconfig.h $(CONFINCLUDEPY)/pyconfig.h # Install the library and miscellaneous stuff needed for extending/embedding # This goes into $(exec_prefix) @@ -732,7 +732,7 @@ recheck: $(SHELL) config.status --recheck $(SHELL) config.status -# Rebuild the configure script from configure.in; also rebuild config.h.in +# Rebuild the configure script from configure.in; also rebuild pyconfig.h.in autoconf: (cd $(srcdir); autoconf) (cd $(srcdir); autoheader) @@ -762,7 +762,7 @@ clean: clobber: clean -rm -f $(PYTHON) $(PGEN) $(LIBRARY) $(LDLIBRARY) $(DLLLIBRARY) \ tags TAGS \ - config.cache config.log config.h Modules/config.c + config.cache config.log pyconfig.h Modules/config.c -rm -rf build platform # Make things extra clean, before making a distribution: |