diff options
author | merakor <cem@ckyln.com> | 2020-06-07 14:42:56 +0000 |
---|---|---|
committer | merakor <cem@ckyln.com> | 2020-06-07 14:42:56 +0000 |
commit | 2454f60991e9eca2c18b7d6b02483266c81acfdb (patch) | |
tree | 5a26cd81da5bd02c291ebb8503149803893b5ef9 /kiss | |
parent | 9a03c9f925b520714476f6af74a37e40453867a5 (diff) | |
download | cpt-2454f60991e9eca2c18b7d6b02483266c81acfdb.tar.gz |
kiss: no longer ignore adding the C library and compiler.
We shouldn't be ignoring links to the compiler and the library as the abscence of
these will result in huge issues unless a package has been statically linked.
FossilOrigin-Name: 4b757646069c05fe19992706cfbea83db6f881b8ea6007a80c014c6fe8053ad4
Diffstat (limited to 'kiss')
-rwxr-xr-x | kiss | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -532,7 +532,7 @@ pkg_fixdeps() { own=${own%/*} own=${own##*/} - case $own in musl|gcc|"$pkg_name"|"$pkg_name-bin"|"") continue ; esac + case $own in "$pkg_name"|"$pkg_name-bin"|"") continue ; esac printf 'Found %s (%s) in (%s)\n' "$own" "$dep" \ "${file##$pkg_dir/$pkg_name}" >/dev/tty |