Commit 62bf307d authored by Richard Berger's avatar Richard Berger
Browse files

Fix bug introduced into Make.py by latest changes

parent 2fb666dc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -809,7 +809,7 @@ class Packages(object):

    original = {}
    tmp = "cd %s; make ps" % dir.src
    output = subprocess.check_output(tmp,stderr=subprocess.STDOUT,shell=True).decode()
    output = subprocess.check_output(tmp,stderr=subprocess.STDOUT,shell=True).decode().split('\n')
    pattern = "Installed\s+(\w+): package (\S+)"
    for line in output:
      m = re.search(pattern,line)