diff options
Diffstat (limited to 'third_party/libxslt/libxslt.gyp')
-rw-r--r-- | third_party/libxslt/libxslt.gyp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/third_party/libxslt/libxslt.gyp b/third_party/libxslt/libxslt.gyp index f775d4b..76f6091 100644 --- a/third_party/libxslt/libxslt.gyp +++ b/third_party/libxslt/libxslt.gyp @@ -22,12 +22,15 @@ 'type': 'settings', 'direct_dependent_settings': { 'cflags': [ - '<!@(python ../../build/linux/pkg_config_wrapper.py --cflags libxslt)', + '<!@(pkg-config --cflags libxslt)', ], }, 'link_settings': { + 'ldflags': [ + '<!@(pkg-config --libs-only-L --libs-only-other libxslt)', + ], 'libraries': [ - '<!@(python ../../build/linux/pkg_config_wrapper.py --libs libxslt)', + '<!@(pkg-config --libs-only-l libxslt)', ], }, }, { # else: OS != "linux" or ! use_system_libxslt |