diff options
author | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-13 18:08:50 +0000 |
---|---|---|
committer | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-13 18:08:50 +0000 |
commit | d2976b5f3c63a5059d361a05ebd6c4fa0cb53a6e (patch) | |
tree | 05dbd35b13b4541b539611ed8578efa7d31b6e2d /third_party/libxslt | |
parent | 63c73a41a18228493aa443243edb5082b667d50b (diff) | |
download | chromium_src-d2976b5f3c63a5059d361a05ebd6c4fa0cb53a6e.zip chromium_src-d2976b5f3c63a5059d361a05ebd6c4fa0cb53a6e.tar.gz chromium_src-d2976b5f3c63a5059d361a05ebd6c4fa0cb53a6e.tar.bz2 |
Linux: fix up use_system_{libxml,libxslt,sqlite3}
http://codereview.chromium.org/164450
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@23324 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/libxslt')
-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 |