diff options
author | Motonobu Takahashi <monyo@samba.org> | 2001-09-29 20:06:35 +0000 |
---|---|---|
committer | Motonobu Takahashi <monyo@samba.org> | 2001-09-29 20:06:35 +0000 |
commit | 51bb6e82488c6253613c3626eed0de8f04c0849c (patch) | |
tree | 1ba4a7bdf055c318811cf5a96183b8e8def7dfa8 | |
parent | 90841e8e13bd875cf419bbdfd6f2616c0673f937 (diff) | |
download | samba-51bb6e82488c6253613c3626eed0de8f04c0849c.tar.gz samba-51bb6e82488c6253613c3626eed0de8f04c0849c.tar.bz2 samba-51bb6e82488c6253613c3626eed0de8f04c0849c.zip |
fixed not to install in *BSD, but perhaps on Solaris, cannot install
(This used to be commit a91777fb4711bfffafa96e0393ad8159b30a8853)
-rw-r--r-- | source3/po/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/po/Makefile.in b/source3/po/Makefile.in index c7f47eaf31..417827413e 100644 --- a/source3/po/Makefile.in +++ b/source3/po/Makefile.in @@ -25,7 +25,7 @@ gettextsrcdir = $(prefix)/share/gettext/po subdir = po INSTALL = /usr/bin/install -c -INSTALL_DATA = $(SHELL) ${INSTALL} -m 644 +INSTALL_DATA = ${INSTALL} -m 644 MKINSTALLDIRS = $(top_srcdir)/script/./mkinstalldirs CC = gcc @@ -118,7 +118,7 @@ install-data-basic: else \ $(SHELL) $(top_srcdir)/mkinstalldirs $(datadir); \ fi - @catalogs='$(CATALOGS)'; \ + catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ case "$$cat" in \ |