diff options
-rwxr-xr-x | source3/configure | 2 | ||||
-rw-r--r-- | source3/configure.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source3/configure b/source3/configure index cdef672404..8b7e6ee1a1 100755 --- a/source3/configure +++ b/source3/configure @@ -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" diff --git a/source3/configure.in b/source3/configure.in index 3bd8995fd7..41d93e3645 100644 --- a/source3/configure.in +++ b/source3/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" |