diff options
author | 2011-08-10 00:02:42 +0200 | |
---|---|---|
committer | 2011-08-10 00:02:42 +0200 | |
commit | 356d71a0dfbb61c1564aa3d602ecd80cfa96edfd (patch) | |
tree | 4a75c49b5772410590ca00bf6a780ad10c022003 /linkdeps.py | |
parent | Fixed some more small stuff (diff) | |
download | ebuildgen-356d71a0dfbb61c1564aa3d602ecd80cfa96edfd.tar.gz ebuildgen-356d71a0dfbb61c1564aa3d602ecd80cfa96edfd.tar.bz2 ebuildgen-356d71a0dfbb61c1564aa3d602ecd80cfa96edfd.zip |
fixed bogus deps in the moc project
Diffstat (limited to 'linkdeps.py')
-rw-r--r-- | linkdeps.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linkdeps.py b/linkdeps.py index f9902c8..bf44391 100644 --- a/linkdeps.py +++ b/linkdeps.py @@ -13,7 +13,7 @@ def qfiletopackage(dep,addpaths): """ print(dep) - (statuscode,outstr) = getstatusoutput("`gcc -print-prog-name=cc1` -v ^C") + (statuscode,outstr) = getstatusoutput('echo "" | `gcc -print-prog-name=cc1` -v') #"`gcc -print-prog-name=cc1plus` -v" for cpp outlst = outstr.split("\n") incpaths = [] |