Call mkdir with -m 755.

This commit is contained in:
Sebastian Ramacher 2012-04-20 01:16:39 +02:00
parent 3abf09682e
commit 6947fd32d4

View File

@ -37,7 +37,7 @@ update-po: ${PROJECT}.pot
install: ${MOS}
$(ECHO) installing translations
$(QUIET)set -e && for f in $^ ; do \
mkdir -p $(DESTDIR)$(LOCALEDIR)/`dirname $$f`; \
mkdir -p -m 755 $(DESTDIR)$(LOCALEDIR)/`dirname $$f`; \
install -m 644 $$f $(DESTDIR)$(LOCALEDIR)/`dirname $$f` ; \
done