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 66CB91387FD for ; Thu, 27 Mar 2014 06:43:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4F672E0A76; Thu, 27 Mar 2014 06:43:37 +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 E82C0E0A76 for ; Thu, 27 Mar 2014 06:43:36 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DC15D33FD50 for ; Thu, 27 Mar 2014 06:43:33 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id A09BC188EF for ; Thu, 27 Mar 2014 06:43:32 +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: <1395902612.c1fa947ec08bd8783f6b2415dfe670e8701b09a1.vapier@gentoo> Subject: [gentoo-commits] proj/crossdev:master commit in: wrappers/ X-VCS-Repository: proj/crossdev X-VCS-Files: wrappers/cross-pkg-config X-VCS-Directories: wrappers/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: c1fa947ec08bd8783f6b2415dfe670e8701b09a1 X-VCS-Branch: master Date: Thu, 27 Mar 2014 06:43:32 +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: d20d8d92-ecc3-4b27-98be-10eee04dc0ea X-Archives-Hash: 3e74993a5977ba9047d894615ff33984 commit: c1fa947ec08bd8783f6b2415dfe670e8701b09a1 Author: Mike Frysinger gentoo org> AuthorDate: Thu Mar 27 06:43:32 2014 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Thu Mar 27 06:43:32 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/crossdev.git;a=commit;h=c1fa947e cross-pkg-config: minor style fix up Signed-off-by: Mike Frysinger gentoo.org> --- wrappers/cross-pkg-config | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/wrappers/cross-pkg-config b/wrappers/cross-pkg-config index 37f3690..d124261 100755 --- a/wrappers/cross-pkg-config +++ b/wrappers/cross-pkg-config @@ -34,10 +34,10 @@ if [ "$1" = "--cross-pkg-config-install" ] ; then pkg_config="${3:-$0}" sed -i.tmp \ -e "s:@CROSS_PKG_CONFIG_INSTALLED@:installed:" \ - -e "s:@CROSS_PKG_CONFIG_PATH@:$pkg_path:" \ - "$pkg_config" - rm -f "$pkg_config".tmp - chmod a+rx "$pkg_config" + -e "s:@CROSS_PKG_CONFIG_PATH@:${pkg_path}:" \ + "${pkg_config}" + rm -f "${pkg_config}".tmp + chmod a+rx "{$pkg_config}" exit 0 fi @@ -115,7 +115,7 @@ if [ -n "${bad_lines}" ] ; then pkg-config --debug "$@" 1>&2 warn "### end of dump ###############################" warn "### suspicious compile flags dumped here ######" - echo "$bad_lines" + echo "${bad_lines}" warn "### end of flag dump ##########################" error "host -I or -L paths detected: ${output}" fi