[Libreoffice-commits] .: config_host.mk.source

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Thu Oct 25 17:34:39 PDT 2012


 config_host.mk.source |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 638adb6373f1491efec258934b21eccff43a4712
Author: Peter Foley <pefoley2 at verizon.net>
Date:   Thu Oct 25 20:34:45 2012 -0400

    fix sourcing config_host.mk
    
    Change-Id: I0ef147e1a86a7a88359c30c458e69cc5ac35741c

diff --git a/config_host.mk.source b/config_host.mk.source
index 89f5f4b..efd014d 100644
--- a/config_host.mk.source
+++ b/config_host.mk.source
@@ -5,7 +5,7 @@
 #       source ./config_host.mk.source
 
 temp_conf=`mktemp config_host.mk.XXXXXX`
-sed -e 's/^\s*\(export [A-Z0-9_]*=\)\(.*\)$/\1"\2"/' \
-    -e 's/^\s*export\s\+\([A-Z0-9_]*\)?=\(.*\)$/export \1="${\1:-\2}"/' config_host.mk >$temp_conf
+sed -n -e 's/^\s*\(export [A-Z0-9_]*=\)\(.*\)$/\1"\2"/p' \
+    -e 's/^\s*export\s\+\([A-Z0-9_]*\)?=\(.*\)$/export \1="${\1:-\2}"/p' config_host.mk >$temp_conf
 source ./$temp_conf
 rm $temp_conf


More information about the Libreoffice-commits mailing list