diff options
-rw-r--r-- | source3/po/Makefile.in.in | 2 | ||||
-rwxr-xr-x | source3/script/installman.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source3/po/Makefile.in.in b/source3/po/Makefile.in.in index 2006e99743..07fadc91d6 100644 --- a/source3/po/Makefile.in.in +++ b/source3/po/Makefile.in.in @@ -25,7 +25,7 @@ gettextsrcdir = $(prefix)/share/gettext/po subdir = po INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ +INSTALL_DATA = $(SHELL) @INSTALL_DATA@ MKINSTALLDIRS = $(top_srcdir)/script/@MKINSTALLDIRS@ CC = @CC@ diff --git a/source3/script/installman.sh b/source3/script/installman.sh index a21385711a..1cacbdbc0e 100755 --- a/source3/script/installman.sh +++ b/source3/script/installman.sh @@ -15,7 +15,7 @@ fi for lang in $langs; do - if ["X$lang" = Xen ]; then + if [ "X$lang" = Xen ]; then echo Installing default man pages in $MANDIR/ lang=. else |