|
@@ -81,7 +81,7 @@ allpkgs = []
|
|
|
# list is used as the starting point for full dependency graphs
|
|
|
def get_targets():
|
|
|
sys.stderr.write("Getting targets\n")
|
|
|
- cmd = ["make", "-s", "show-targets"]
|
|
|
+ cmd = ["make", "-s", "--no-print-directory", "show-targets"]
|
|
|
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True)
|
|
|
output = p.communicate()[0].strip()
|
|
|
if p.returncode != 0:
|
|
@@ -95,7 +95,7 @@ def get_targets():
|
|
|
# dependencies formatted as a Python dictionary.
|
|
|
def get_depends(pkgs):
|
|
|
sys.stderr.write("Getting dependencies for %s\n" % pkgs)
|
|
|
- cmd = ["make", "-s" ]
|
|
|
+ cmd = ["make", "-s", "--no-print-directory" ]
|
|
|
for pkg in pkgs:
|
|
|
cmd.append("%s-show-depends" % pkg)
|
|
|
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True)
|