summaryrefslogtreecommitdiffstats
path: root/build/linux
diff options
context:
space:
mode:
authorsgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-21 12:43:27 +0000
committersgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-21 12:43:27 +0000
commitf04e605a88a8f80f32e8ec38b31d16ac4e2b0164 (patch)
tree7beb60a3c19b2b5e83a42065d6cb95cb970439d0 /build/linux
parentd5cef1bb6d1edc220740a4f42888bebfdcc950bf (diff)
downloadchromium_src-f04e605a88a8f80f32e8ec38b31d16ac4e2b0164.zip
chromium_src-f04e605a88a8f80f32e8ec38b31d16ac4e2b0164.tar.gz
chromium_src-f04e605a88a8f80f32e8ec38b31d16ac4e2b0164.tar.bz2
Fix pkg_config_wrapper.py paths now that the updated gyp executes
the variable expansion from the same directory as the .gyp file Review URL: http://codereview.chromium.org/50085 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@12245 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/linux')
-rw-r--r--build/linux/system.gyp12
1 files changed, 6 insertions, 6 deletions
diff --git a/build/linux/system.gyp b/build/linux/system.gyp
index c9452bd..73f439a 100644
--- a/build/linux/system.gyp
+++ b/build/linux/system.gyp
@@ -9,12 +9,12 @@
'type': 'settings',
'direct_dependent_settings': {
'cflags': [
- '<!@(python ../build/linux/pkg_config_wrapper.py --cflags gtk+-2.0)',
+ '<!@(python pkg_config_wrapper.py --cflags gtk+-2.0)',
],
},
'link_settings': {
'libraries': [
- '<!@(python ../build/linux/pkg_config_wrapper.py --libs gtk+-2.0)',
+ '<!@(python pkg_config_wrapper.py --libs gtk+-2.0)',
],
},
},
@@ -23,12 +23,12 @@
'type': 'settings',
'direct_dependent_settings': {
'cflags': [
- '<!@(python ../build/linux/pkg_config_wrapper.py --cflags nss)',
+ '<!@(python pkg_config_wrapper.py --cflags nss)',
],
},
'link_settings': {
'libraries': [
- '<!@(python ../build/linux/pkg_config_wrapper.py --libs nss)',
+ '<!@(python pkg_config_wrapper.py --libs nss)',
],
},
},
@@ -37,12 +37,12 @@
'type': 'settings',
'direct_dependent_settings': {
'cflags': [
- '<!@(python ../build/linux/pkg_config_wrapper.py --cflags pangoft2)',
+ '<!@(python pkg_config_wrapper.py --cflags pangoft2)',
],
},
'link_settings': {
'libraries': [
- '<!@(python ../build/linux/pkg_config_wrapper.py --libs pangoft2)',
+ '<!@(python pkg_config_wrapper.py --libs pangoft2)',
],
},
},