[Libreoffice-commits] .: autogen.sh
Norbert Thiebaud
nthiebaud at kemper.freedesktop.org
Wed Dec 1 16:22:48 PST 2010
autogen.sh | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
New commits:
commit e293694e23cec47ad9e1e1cff2b7a537ce8d485f
Author: Norbert Thiebaud <nthiebaud at gmail.com>
Date: Wed Dec 1 18:22:32 2010 -0600
fix the IFS trick. the bashims removal broke that part
diff --git a/autogen.sh b/autogen.sh
index c7a1136..ce60f32 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -54,7 +54,8 @@ distro_name=$(distro "$@")
if test "z${distro_name}" != "z" ; then
cumul=""
if test -f "./distro-configs/${distro_name}.conf" ; then
- IFS="$(printf '\n')"
+ IFS=$'
+'
for opt in $(cat distro-configs/${distro_name}.conf) ; do cumul="$cumul $opt" ; done ;
unset IFS
conf_args=$(requote "$@" | sed -e "s/'--with-distro=[^']*'/$cumul/")
More information about the Libreoffice-commits
mailing list