[Libreoffice-commits] .: bin/get_config_variables
Libreoffice Gerrit user
logerrit at kemper.freedesktop.org
Wed Nov 14 02:01:14 PST 2012
bin/get_config_variables | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
New commits:
commit 288a3e6ef7e04c95be1ed26a5df850fbf4e6ea24
Author: Norbert Thiebaud <nthiebaud at gmail.com>
Date: Wed Nov 14 04:00:26 2012 -0600
add a way to extract variables from config_host/build and shell-export them
usage:
. ./bin/get_config_variables [ --host | --build ] variable [variable ...]
--host is the default
Change-Id: I37d90faf613dfbdb060c18e25370175fde26f3bf
diff --git a/bin/get_config_variables b/bin/get_config_variables
new file mode 100644
index 0000000..43a3ad1
--- /dev/null
+++ b/bin/get_config_variables
@@ -0,0 +1,23 @@
+#!/bin/sh
+#set -x
+
+glv_var="$1"
+glv_config="config_host.mk"
+
+if [ "$glv_var" = "--build" ] ; then
+ glv_config="config_build.mk"
+ shift
+elif [ "$glv_var" = "--host" ] ; then
+ shift
+fi
+
+while [ -n "$1" ] ; do
+ glv_var="$1"
+ shift
+ glv_value=$(grep "^ *export ${glv_var}=" ${glv_config} | sed -e "s/[^=]*=//")
+ export ${glv_var}="${glv_value}"
+done
+
+unset glv_var
+unset glv_value
+unset glv_vonfig
More information about the Libreoffice-commits
mailing list