diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-12-24 16:23:02 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-12-24 16:23:02 (GMT) |
commit | dd7b39e0035e59330a7fac9779d8f19902502c9b (patch) | |
tree | 1e97d41bbfd65483fe7da204a89216fa76421453 /unix/Makefile.in | |
parent | 34b0c66b2df6dd3465e359dd2b6d0d7c121f30de (diff) | |
download | tk-dd7b39e0035e59330a7fac9779d8f19902502c9b.zip tk-dd7b39e0035e59330a7fac9779d8f19902502c9b.tar.gz tk-dd7b39e0035e59330a7fac9779d8f19902502c9b.tar.bz2 |
unix/configure.in is not supposed to be executable in the dist.
Don't generate unix/tkConfig.h.in and unix/configure as part of "make dist"
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 194ec33..ace5a3a 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -1496,13 +1496,8 @@ DISTROOT = /tmp/dist DISTNAME = tk${VERSION}${PATCH_LEVEL} ZIPNAME = tk${MAJOR_VERSION}${MINOR_VERSION}${PATCH_LEVEL}-src.zip DISTDIR = $(DISTROOT)/$(DISTNAME) -$(UNIX_DIR)/configure: $(UNIX_DIR)/configure.in $(UNIX_DIR)/tcl.m4 \ - $(UNIX_DIR)/aclocal.m4 - cd $(UNIX_DIR); autoconf $(MAC_OSX_DIR)/configure: $(MAC_OSX_DIR)/configure.ac $(UNIX_DIR)/configure cd $(MAC_OSX_DIR); autoconf -$(UNIX_DIR)/tkConfig.h.in: $(MAC_OSX_DIR)/configure - cd $(MAC_OSX_DIR); autoheader; touch $@ $(TOP_DIR)/manifest.uuid: printf "git." >$(TOP_DIR)/manifest.uuid @@ -1520,7 +1515,7 @@ dist: $(UNIX_DIR)/configure $(UNIX_DIR)/tkConfig.h.in $(UNIX_DIR)/tk.pc.in $(M $(UNIX_DIR)/tkConfig.sh.in $(UNIX_DIR)/install-sh \ $(UNIX_DIR)/README $(UNIX_DIR)/installManPage \ $(UNIX_DIR)/tkConfig.h.in $(UNIX_DIR)/tk.pc.in $(DISTDIR)/unix - chmod 775 $(DISTDIR)/unix/configure $(DISTDIR)/unix/configure.in + chmod 775 $(DISTDIR)/unix/configure mkdir $(DISTDIR)/bitmaps @(cd $(TOP_DIR); for i in bitmaps/* ; do \ if [ -f $$i ] ; then \ |