kiss: Fix cases of a make dep being a runtime dep

This commit is contained in:
Dylan Araps 2019-08-19 10:24:57 +00:00
parent 8fdf955c90
commit 13fb70942f
1 changed files with 3 additions and 1 deletions

4
kiss
View File

@ -366,7 +366,9 @@ pkg_fixdeps() {
done >> depends-copy
# Remove duplicate entries from the new depends file.
sort depends-copy | uniq > depends-new
# This remove duplicate lines looking *only* at the
# first column.
sort -u -k1,1 depends-copy > depends-new
# Display a 'diff' of the new dependencies agaisnt
# the old ones. '-N' treats non-existent files as blank.