1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-31 01:48:16 +03:00

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.
This commit is contained in:
Andrew Bartlett -
parent 7f07004571
commit cad971f4c3
2 changed files with 2 additions and 2 deletions

2
source/configure vendored

@ -12049,7 +12049,7 @@ if test "${with_manpages_langs+set}" = set; then
esac
echo "$ac_t""$manlangs" 1>&6
manlangs=${manlangs//,/ } # replacing commas with spaces to produce a list
manlangs=`echo $manlangs | sed "s/,/ /"` # replacing commas with spaces to produce a list
else
manlangs="en"

@ -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"