Check-in [2e0e4b1342]
Not logged in

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:win/Makefile.in: closes [0bcc43fa778517c4]: replace INSTALL_DATA_DIR (ported from unix-makefile) with MKDIR/chmod
Timelines: family | ancestors | descendants | both | core-8-branch
Files: files | file ages | folders
SHA3-256: 2e0e4b13427925665f6d455c53a8948f56cb384d4e3b72b4587a3c76b9d1dd77
User & Date: sebres 2018-12-28 20:15:17.323
Context
2018-12-28
21:09
merge 8.6 (merge point only, no functional changes) check-in: 900a93c562 user: sebres tags: core-8-branch
20:20
merge 8.7 check-in: 78273ca917 user: sebres tags: trunk
20:15
win/Makefile.in: closes [0bcc43fa778517c4]: replace INSTALL_DATA_DIR (ported from unix-makefile) wit... check-in: 2e0e4b1342 user: sebres tags: core-8-branch
20:01
merge 8.6 (resolved warnings) check-in: 369c35b300 user: sebres tags: core-8-branch
Changes
Unified Diff Ignore Whitespace Patch
Changes to win/Makefile.in.
826
827
828
829
830
831
832
833

834
835
836
837
838
839
840
install-doc: doc

install-headers:
	@for i in "$(INCLUDE_INSTALL_DIR)"; \
	    do \
	    if [ ! -d "$$i" ] ; then \
		echo "Making directory $$i"; \
		$(INSTALL_DATA_DIR) "$$i"; \

		else true; \
		fi; \
	    done;
	@echo "Installing header files to $(INCLUDE_INSTALL_DIR)/";
	@for i in $(GENERIC_DIR)/tcl.h $(GENERIC_DIR)/tclDecls.h \
		$(GENERIC_DIR)/tclOO.h $(GENERIC_DIR)/tclOODecls.h \
		$(GENERIC_DIR)/tclPlatDecls.h \







|
>







826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
install-doc: doc

install-headers:
	@for i in "$(INCLUDE_INSTALL_DIR)"; \
	    do \
	    if [ ! -d "$$i" ] ; then \
		echo "Making directory $$i"; \
		$(MKDIR) "$$i"; \
		chmod 755 "$$i"; \
		else true; \
		fi; \
	    done;
	@echo "Installing header files to $(INCLUDE_INSTALL_DIR)/";
	@for i in $(GENERIC_DIR)/tcl.h $(GENERIC_DIR)/tclDecls.h \
		$(GENERIC_DIR)/tclOO.h $(GENERIC_DIR)/tclOODecls.h \
		$(GENERIC_DIR)/tclPlatDecls.h \