summaryrefslogtreecommitdiffstats
path: root/Makefile.pre.in
diff options
context:
space:
mode:
authorNeil Schemenauer <nascheme@enme.ucalgary.ca>2001-02-10 20:07:38 (GMT)
committerNeil Schemenauer <nascheme@enme.ucalgary.ca>2001-02-10 20:07:38 (GMT)
commit8d3274e05319eacb281c19e9b29d730bbdf47b96 (patch)
treef4e6fa053bb68e1eb17c48b9ae76175470964fb6 /Makefile.pre.in
parentc62e0efad069dbecc22f50d4a023092ea18d815b (diff)
downloadcpython-8d3274e05319eacb281c19e9b29d730bbdf47b96.zip
cpython-8d3274e05319eacb281c19e9b29d730bbdf47b96.tar.gz
cpython-8d3274e05319eacb281c19e9b29d730bbdf47b96.tar.bz2
Specify directory permissions properly. Closes SF patch #103717.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r--Makefile.pre.in14
1 files changed, 7 insertions, 7 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in
index f6dabe6..efe8862 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -506,7 +506,7 @@ $(DESTSHARED):
do \
if test ! -d $$i; then \
echo "Creating directory $$i"; \
- $(INSTALL) -d 755 $$i; \
+ $(INSTALL) -d -m $(DIRMODE) $$i; \
else true; \
fi; \
done
@@ -527,7 +527,7 @@ altbininstall: $(PYTHON)
do \
if test ! -d $$i; then \
echo "Creating directory $$i"; \
- $(INSTALL) -d $(DIRMODE) $$i; \
+ $(INSTALL) -d -m $(DIRMODE) $$i; \
else true; \
fi; \
done
@@ -547,7 +547,7 @@ maninstall:
do \
if test ! -d $$i; then \
echo "Creating directory $$i"; \
- $(INSTALL) -d $(DIRMODE) $$i; \
+ $(INSTALL) -d -m $(DIRMODE) $$i; \
else true; \
fi; \
done
@@ -565,7 +565,7 @@ libinstall: python $(srcdir)/Lib/$(PLATDIR)
do \
if test ! -d $$i; then \
echo "Creating directory $$i"; \
- $(INSTALL) -d $(DIRMODE) $$i; \
+ $(INSTALL) -d -m $(DIRMODE) $$i; \
else true; \
fi; \
done
@@ -576,7 +576,7 @@ libinstall: python $(srcdir)/Lib/$(PLATDIR)
b=$(LIBDEST)/$$d; \
if test ! -d $$b; then \
echo "Creating directory $$b"; \
- $(INSTALL) -d $(DIRMODE) $$b; \
+ $(INSTALL) -d -m $(DIRMODE) $$b; \
else true; \
fi; \
done
@@ -636,7 +636,7 @@ inclinstall:
do \
if test ! -d $$i; then \
echo "Creating directory $$i"; \
- $(INSTALL) -d $(DIRMODE) $$i; \
+ $(INSTALL) -d -m $(DIRMODE) $$i; \
else true; \
fi; \
done
@@ -655,7 +655,7 @@ libainstall: all
do \
if test ! -d $$i; then \
echo "Creating directory $$i"; \
- $(INSTALL) -d $(DIRMODE) $$i; \
+ $(INSTALL) -d -m $(DIRMODE) $$i; \
else true; \
fi; \
done