diff options
author | Motonobu Takahashi <monyo@samba.org> | 2001-09-24 18:22:46 +0000 |
---|---|---|
committer | Motonobu Takahashi <monyo@samba.org> | 2001-09-24 18:22:46 +0000 |
commit | c2e256c18cbaa1145ab6ca8ad59baadca36abbdd (patch) | |
tree | 46c02d58edaec9963fe43a7a5f35deb08a603b7b | |
parent | 87a945f13d2f241facdd3a1bdc636193339f1697 (diff) | |
download | samba-c2e256c18cbaa1145ab6ca8ad59baadca36abbdd.tar.gz samba-c2e256c18cbaa1145ab6ca8ad59baadca36abbdd.tar.xz samba-c2e256c18cbaa1145ab6ca8ad59baadca36abbdd.zip |
fixed a typo in installman.sh
fixed a problem that source/install-sh is not executable
-rw-r--r-- | source/po/Makefile.in.in | 2 | ||||
-rwxr-xr-x | source/script/installman.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source/po/Makefile.in.in b/source/po/Makefile.in.in index 2006e997439..07fadc91d6a 100644 --- a/source/po/Makefile.in.in +++ b/source/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/source/script/installman.sh b/source/script/installman.sh index a21385711a8..1cacbdbc0ed 100755 --- a/source/script/installman.sh +++ b/source/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 |