commit: 6c6073d076b805cfb6c5d8705bc84c0b792f788e
Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 5 07:52:51 2015 +0000
Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Wed Aug 5 07:52:51 2015 +0000
URL: https://gitweb.gentoo.org/proj/gcc-config.git/commit/?id=6c6073d0
gcc-config: quote expanded paths
Signed-off-by: Mike Frysinger <vapier <AT> gentoo.org>
gcc-config | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gcc-config b/gcc-config
index 4fccc8c..7fcde15 100755
--- a/gcc-config
+++ b/gcc-config
@@ -19,7 +19,7 @@ trap ":" INT QUIT TSTP
argv0=${0##*/}
functions_script="${EPREFIX}/lib/gentoo/functions.sh"
-source ${functions_script} || {
+source "${functions_script}" || {
echo "${argv0}: Could not source ${functions_script}!" 1>&2
exit 1
}