diff options
author | Joshua Ismael Haase Hernández <hahj87@gmail.com> | 2011-06-19 00:50:35 -0500 |
---|---|---|
committer | Joshua Ismael Haase Hernández <hahj87@gmail.com> | 2011-06-19 00:50:35 -0500 |
commit | 0f527db6e225f7e8152d41b32dda434bb58f7e15 (patch) | |
tree | 90ef46909e44bbc6f86a748c3dbbb302be327b7c /fullpkg | |
parent | 702cc20bd94cdb2939e0c163e8e9671c920c5b19 (diff) |
find_deps use ">=" instead "="
Diffstat (limited to 'fullpkg')
-rwxr-xr-x | fullpkg | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -157,7 +157,7 @@ function find_deps { # If package and correct ${fullver} is built exit # TODO?: If this package is in force_build: skip this step - if is_built "${pkgbase}=${fullver}"; then + if is_built "${pkgbase}>=${fullver}"; then exit 0 fi |