From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 631CC1395EA for ; Wed, 5 Aug 2015 07:53:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 081DE14045; Wed, 5 Aug 2015 07:53:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B1C2514045 for ; Wed, 5 Aug 2015 07:53:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E555734074E for ; Wed, 5 Aug 2015 07:52:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E3FD410F for ; Wed, 5 Aug 2015 07:52:48 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1438761171.6c6073d076b805cfb6c5d8705bc84c0b792f788e.vapier@gentoo> Subject: [gentoo-commits] proj/gcc-config:master commit in: / X-VCS-Repository: proj/gcc-config X-VCS-Files: gcc-config X-VCS-Directories: / X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 6c6073d076b805cfb6c5d8705bc84c0b792f788e X-VCS-Branch: master Date: Wed, 5 Aug 2015 07:52:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 3cd83868-5d5f-4711-bb1b-5e43c2f8a3ab X-Archives-Hash: bfe5a743ea557560ae53ad8c7d82f830 commit: 6c6073d076b805cfb6c5d8705bc84c0b792f788e Author: Mike Frysinger gentoo org> AuthorDate: Wed Aug 5 07:52:51 2015 +0000 Commit: Mike Frysinger gentoo 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 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 }