use mkdir -p directly since (1) we know darwin supports it and (2) we do not know whether to use $(mkdir_p) (automake 1.10) or $(MKDIR_P) (automake 1.9) (bug 4216)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20238 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2007-09-12 10:30:25 +00:00
parent 8319910995
commit fb82e23a44

View File

@ -17,5 +17,5 @@ nodist_pkgdata_DATA = lyxrc.dist
install-data-hook:
LINGUAS_=`sed -e "/^#/d" -e "s/#.*//" $(LINGUAS)`; \
for f in en $$LINGUAS_ ; do \
$(MKDIR_P) $(pkgdatadir)/$$f.lproj ; \
mkdir -p $(pkgdatadir)/$$f.lproj ; \
done