diff options
Diffstat (limited to 'po')
-rw-r--r-- | po/Makefile.in.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/po/Makefile.in.in b/po/Makefile.in.in index 2c31b7d06..4343922a0 100644 --- a/po/Makefile.in.in +++ b/po/Makefile.in.in @@ -26,11 +26,12 @@ exec_prefix = @exec_prefix@ datadir = @datadir@ localedir = $(datadir)/locale gettextsrcdir = $(datadir)/gettext/po +mkdir_p = @mkdir_p@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ MKINSTALLDIRS = @MKINSTALLDIRS@ -mkinstalldirs = $(SHELL) `case "$(MKINSTALLDIRS)" in /*) echo "$(MKINSTALLDIRS)" ;; *) echo "$(top_builddir)/$(MKINSTALLDIRS)" ;; esac` +mkinstalldirs = `if test ! -z "$(mkdir_p)"; then echo "$(mkdir_p)"; else case "$(MKINSTALLDIRS)" in /*) echo "$(MKINSTALLDIRS)" ;; *) echo "$(top_builddir)/$(MKINSTALLDIRS)" ;; esac; fi` CC = @CC@ GMSGFMT = @GMSGFMT@ |