Commit fcd9ceb4 authored by thakis@chromium.org's avatar thakis@chromium.org

gn: Fix pkg-config.py default output after r248477.

r248477 made pkg-config.py print a 5-tuple. Change the default output accordingly.

BUG=none
R=brettw@chromium.org

Review URL: https://codereview.chromium.org/171993002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251955 0039d316-1c4b-4281-b951-d872f2087c98
parent c58f78fe
...@@ -30,7 +30,7 @@ from optparse import OptionParser ...@@ -30,7 +30,7 @@ from optparse import OptionParser
# success. This allows us to "kind of emulate" a Linux build from other # success. This allows us to "kind of emulate" a Linux build from other
# platforms. # platforms.
if sys.platform.find("linux") == -1: if sys.platform.find("linux") == -1:
print "[[],[],[],[]]" print "[[],[],[],[],[]]"
sys.exit(0) sys.exit(0)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment