Bug 16112 - [PATCH] Fix win32 'python setup.py ...' build -- use double quotes
Summary: [PATCH] Fix win32 'python setup.py ...' build -- use double quotes
Status: RESOLVED FIXED
Alias: None
Product: pycairo
Classification: Unclassified
Component: general (show other bugs)
Version: unspecified
Hardware: Other All
: medium normal
Assignee: Steve Chaplin
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-05-27 04:45 UTC by Kirill Smelkov
Modified: 2008-07-20 23:52 UTC (History)
0 users

See Also:
i915 platform:
i915 features:


Attachments
patch (1.03 KB, patch)
2008-05-27 04:47 UTC, Kirill Smelkov
Details | Splinter Review

Description Kirill Smelkov 2008-05-27 04:45:55 UTC
When on win32, it makes a difference, whether '...' or "..." is used in shell,
consider:

  C:\>pkg-config --print-errors 'cairo >= 1.4.12'
  Package 'cairo was not found in the pkg-config search path.
  Perhaps you should add the directory containing `'cairo.pc'
  to the PKG_CONFIG_PATH environment variable
  No package ''cairo' found

v.s.

  C:\>pkg-config --print-errors "cairo >= 1.4.12"
  C:\>pkg-config --print-errors "cairo >= 1.8.12"
  Requested 'cairo >= 1.8.12' but version of cairo is 1.6.4


So it is important to use double quotes.


/patch attached/
Comment 1 Kirill Smelkov 2008-05-27 04:47:21 UTC
Created attachment 16761 [details] [review]
patch
Comment 2 Steve Chaplin 2008-07-16 16:25:30 UTC
Patch (modified) applied to CVS, thanks.
Comment 3 Kirill Smelkov 2008-07-20 23:52:11 UTC
Thanks!


Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.