summaryrefslogtreecommitdiffstats
path: root/source/configure.in
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2001-09-25 14:11:28 +0000
committerAndrew Bartlett <abartlet@samba.org>2001-09-25 14:11:28 +0000
commitcad971f4c37042c4e9b6e6332e55757473f6da78 (patch)
tree4efd66e42d429ca23c170b678ecb9d7c82f32915 /source/configure.in
parent7f07004571ad1b8d1ce787f6788b4c4d8685db37 (diff)
downloadsamba-cad971f4c37042c4e9b6e6332e55757473f6da78.tar.gz
samba-cad971f4c37042c4e9b6e6332e55757473f6da78.tar.xz
samba-cad971f4c37042c4e9b6e6332e55757473f6da78.zip
Fix up the ./configure for the BSDs:
Subject: Re: bugs in installman.sh script Date: Tue, 25 Sep 2001 16:02:11 +0200 (CEST) From: Rafal Szczesniak <mimir@spin.ict.pwr.wroc.pl> To: Andrew Bartlett <abartlet@pcug.org.au> CC: <samba-technical@lists.samba.org> On Tue, 25 Sep 2001, Andrew Bartlett wrote: > Its broken for BSDs and was broken for many others. You might want to > re-checkout. Any fixes appricatiated. OK. Here's the patch for configure.in. Replaces illegal, under [t]csh, substitution with more general sed construction. Apply it, please, and I'll see if I can clean up the installman.sh further.
Diffstat (limited to 'source/configure.in')
-rw-r--r--source/configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/configure.in b/source/configure.in
index 3bd8995fd7b..41d93e36456 100644
--- a/source/configure.in
+++ b/source/configure.in
@@ -2092,7 +2092,7 @@ AC_ARG_WITH(manpages-langs,
esac
AC_MSG_RESULT($manlangs)
- manlangs=${manlangs//,/ } # replacing commas with spaces to produce a list
+ manlangs=`echo $manlangs | sed "s/,/ /"` # replacing commas with spaces to produce a list
AC_SUBST(manlangs)],
[manlangs="en"