summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/libpng
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@theqtcompany.com>2015-09-03 16:12:34 +0200
committerAllan Sandfeld Jensen <allan.jensen@theqtcompany.com>2016-01-28 14:12:38 +0000
commitee1ef63d533775f002b66d1416c5dfea70e18f10 (patch)
tree753a00924e722846619d47c088f2643173531b4f /chromium/third_party/libpng
parent616298bc93373024ec549a502b447a6c591292ab (diff)
<third_party> Call pkg-config variable instead of pkg-config directly
Fixes the unbundled gyp files to call pkg-config correctly through the pkg-config variable. Change-Id: Ic954102daa95aec37c934e6f4ffc6638656381e3 Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com> Reviewed-by: Michael BrĂ¼ning <michael.bruning@theqtcompany.com>
Diffstat (limited to 'chromium/third_party/libpng')
-rw-r--r--chromium/third_party/libpng/libpng.gyp6
1 files changed, 3 insertions, 3 deletions
diff --git a/chromium/third_party/libpng/libpng.gyp b/chromium/third_party/libpng/libpng.gyp
index b9192b250ae..6c71dc05f4e 100644
--- a/chromium/third_party/libpng/libpng.gyp
+++ b/chromium/third_party/libpng/libpng.gyp
@@ -103,15 +103,15 @@
],
'direct_dependent_settings': {
'cflags': [
- '<!@(pkg-config --cflags libpng)',
+ '<!@(<(pkg-config) --cflags libpng)',
],
},
'link_settings': {
'ldflags': [
- '<!@(pkg-config --libs-only-L --libs-only-other libpng)',
+ '<!@(<(pkg-config) --libs-only-L --libs-only-other libpng)',
],
'libraries': [
- '<!@(pkg-config --libs-only-l libpng)',
+ '<!@(<(pkg-config) --libs-only-l libpng)',
],
},
'variables': {