From 27a95daa9c8f13a80fda4d969a3af08bfd5a2e6d Mon Sep 17 00:00:00 2001 From: "glider@chromium.org" Date: Mon, 24 Mar 2014 13:56:26 +0000 Subject: [PATCH] Remove the unnecessary <(chroot_cmd) prefix from the libgcrypt-config-wrapper invocation. TBR=piman@chromium.org BUG=355496 Review URL: https://codereview.chromium.org/209443004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@258924 0039d316-1c4b-4281-b951-d872f2087c98 --- build/linux/system.gyp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build/linux/system.gyp b/build/linux/system.gyp index 92db5ff79dd1..29cb33a37130 100644 --- a/build/linux/system.gyp +++ b/build/linux/system.gyp @@ -7,7 +7,9 @@ 'conditions': [ ['sysroot!=""', { 'pkg-config': '<(chroot_cmd) ./pkg-config-wrapper "<(sysroot)" "<(target_arch)"', - 'libgcrypt-config': '<(chroot_cmd) ./libgcrypt-config-wrapper "<(sysroot)"', + # libgcrypt-config-wrapper invokes libgcrypt-config directly from the + # sysroot, so there's no need to prefix it with <(chroot_cmd). + 'libgcrypt-config': './libgcrypt-config-wrapper "<(sysroot)"', }, { 'pkg-config': 'pkg-config', 'libgcrypt-config': 'libgcrypt-config', -- 2.11.4.GIT