diff options
author | Sebastian Parborg <darkdefende@gmail.com> | 2011-07-21 22:05:00 +0200 |
---|---|---|
committer | Sebastian Parborg <darkdefende@gmail.com> | 2011-07-21 22:05:00 +0200 |
commit | 32d707039516b26496cbb8ed973c48ee6e3b4351 (patch) | |
tree | e9a4cfa1e61506e6478283377fd7ca9498b76b2c | |
parent | Added pfl support! And basic automake support. (diff) | |
download | ebuildgen-32d707039516b26496cbb8ed973c48ee6e3b4351.tar.gz ebuildgen-32d707039516b26496cbb8ed973c48ee6e3b4351.tar.bz2 ebuildgen-32d707039516b26496cbb8ed973c48ee6e3b4351.zip |
Fixed a typo
-rw-r--r-- | linkdeps.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linkdeps.py b/linkdeps.py index c89869e..7e81e2e 100644 --- a/linkdeps.py +++ b/linkdeps.py @@ -68,8 +68,8 @@ def pfltopackage(dep,addpaths): print("More than one matching package for dep found!\nPicking the last one...") if not matching_packages: - print("not matching package found within the include paths!") - print("file not found was:" + dep) + print("no matching package found within the include paths!") + print("file not found was: " + dep) print("a dummy dep will be placed in the ebuild, fix it!") package = ["dummy"] |