From 0fca57c766990fc430df875f704f889972d047f4 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Mon, 9 Mar 2009 10:55:34 +0100 Subject: [PATCH] Fixed system information on buildspy if we have spaces in there. --- tools/make-buildspy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/make-buildspy b/tools/make-buildspy index 17b4e986c..ddb3556af 100755 --- a/tools/make-buildspy +++ b/tools/make-buildspy @@ -48,7 +48,7 @@ build_spy_send_profile() { build_spy toolchain "${NAME}-${TOOLCHAINVERSION}" for i in system fedora redhat $SNAME debian ubuntu lsb; do if [ -e "/etc/${i}-release" ]; then - build_spy system $(cat /etc/${i}-release) + build_spy system "$($BASEDIR/tools/base64 < /etc/${i}-release)" break fi done -- 2.47.3