From 638adb6373f1491efec258934b21eccff43a4712 Mon Sep 17 00:00:00 2001 From: Peter Foley Date: Thu, 25 Oct 2012 20:34:45 -0400 Subject: [PATCH] fix sourcing config_host.mk Change-Id: I0ef147e1a86a7a88359c30c458e69cc5ac35741c --- config_host.mk.source | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config_host.mk.source b/config_host.mk.source index 89f5f4b8109e..efd014dbb333 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