summaryrefslogtreecommitdiffstats
path: root/build_tools
diff options
context:
space:
mode:
Diffstat (limited to 'build_tools')
-rwxr-xr-xbuild_tools/bin/mpv2.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/build_tools/bin/mpv2.py b/build_tools/bin/mpv2.py
index b21ed29..d2991e7 100755
--- a/build_tools/bin/mpv2.py
+++ b/build_tools/bin/mpv2.py
@@ -320,6 +320,8 @@ class Packagefile(object):
package_version = None
pkgregext="^%s$" %split_package_name
+ #escape + in regex so pkgs with + in the name are found
+ pkgregext = pkgregext.replace('+', '\+')
command = ["pacman" , "-Ss" , pkgregext ]
#print " Checking for dependencies in repository: %s" %i
p = subprocess.Popen(command, stdout = subprocess.PIPE,)
@@ -1043,4 +1045,4 @@ if __name__ == "__main__":
#libsig
#libxml++ dep search and compile
-# \ No newline at end of file
+#