diff options
author | dylan.araps@gmail.com <dylan.araps@gmail.com> | 2019-06-17 18:04:59 +0000 |
---|---|---|
committer | dylan.araps@gmail.com <dylan.araps@gmail.com> | 2019-06-17 18:04:59 +0000 |
commit | 3e0a2e254086f05adbafedb589d8943a7738695c (patch) | |
tree | 7ae0efbfee47206c2d7204e5368685401075edd6 | |
parent | f849603f6b1a23a95dfc4a3abf5602c5cf1e586d (diff) | |
download | cpt-3e0a2e254086f05adbafedb589d8943a7738695c.tar.gz |
kiss: Fix bug with duplicate dependencies.
FossilOrigin-Name: 2b4c23d0ca6743380c8f2d5ca25fc076dd013d5c63e33bdb9d38307350935057
-rwxr-xr-x | kiss | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -47,7 +47,7 @@ pkg_depends() { [ "$1" = install ] && [ "$opt" = make ] && continue case $missing in - *" $dep${opt:+ ($opt)},"*) ;; + *" $dep "*,) ;; *) missing="$missing $dep${opt:+ ($opt)}," pkg_setup "$dep" pkg_depends ;; |