Skip to content

Commit

Permalink
Escape >= in pkg-config command in cross-platform way
Browse files Browse the repository at this point in the history
  • Loading branch information
loonycyborg committed Jun 30, 2014
1 parent ab80810 commit bae75f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scons/pango.py
Expand Up @@ -18,7 +18,7 @@ def CheckPango(context, backend, require_version = None):
env["ENV"]["PKG_CONFIG_PATH"] = environ.get("PKG_CONFIG_PATH")
version_arg = ""
if require_version:
version_arg = " \\>= " + require_version
version_arg = env["ESCAPE"](" >= ") + require_version
env.ParseConfig("pkg-config --libs --cflags $PKGCONFIG_FLAGS pango" + backend + version_arg)
context.Result("yes")
return True
Expand Down

0 comments on commit bae75f5

Please sign in to comment.