summaryrefslogtreecommitdiffstats
path: root/win/Makefile.in
diff options
context:
space:
mode:
authorsebres <sebres@users.sourceforge.net>2018-12-28 20:15:17 (GMT)
committersebres <sebres@users.sourceforge.net>2018-12-28 20:15:17 (GMT)
commit13881cf3dbacc88efc31587cd9cd68a4bc982dfd (patch)
tree98a13d9593a06e05f90a5b8bf9926c52b46d716b /win/Makefile.in
parent6c4393197061e8961e1a5349febe640955d2ca23 (diff)
downloadtcl-13881cf3dbacc88efc31587cd9cd68a4bc982dfd.zip
tcl-13881cf3dbacc88efc31587cd9cd68a4bc982dfd.tar.gz
tcl-13881cf3dbacc88efc31587cd9cd68a4bc982dfd.tar.bz2
win/Makefile.in: closes [0bcc43fa778517c4]: replace INSTALL_DATA_DIR (ported from unix-makefile) with MKDIR/chmod
Diffstat (limited to 'win/Makefile.in')
-rw-r--r--win/Makefile.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/win/Makefile.in b/win/Makefile.in
index 8ed5f60..6c26a0e 100644
--- a/win/Makefile.in
+++ b/win/Makefile.in
@@ -830,7 +830,8 @@ install-headers:
do \
if [ ! -d "$$i" ] ; then \
echo "Making directory $$i"; \
- $(INSTALL_DATA_DIR) "$$i"; \
+ $(MKDIR) "$$i"; \
+ chmod 755 "$$i"; \
else true; \
fi; \
done;