pkg_fixdeps: Remove useless readlink

This commit is contained in:
Dylan Araps 2020-01-12 19:38:25 +02:00
parent e1b4afd742
commit 527dd10adc
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E

3
kiss
View File

@ -277,9 +277,6 @@ pkg_fixdeps() {
dep=${dep#* => } dep=${dep#* => }
dep=${dep% *} dep=${dep% *}
# Traverse symlinks to get the true path to the file.
dep=$(readlink -f "$KISS_ROOT/${dep##$KISS_ROOT}")
# Figure out which package owns the file. # Figure out which package owns the file.
dep=$(set +f; grep -lFx "${dep##$KISS_ROOT}" "$sys_db/"*/manifest) dep=$(set +f; grep -lFx "${dep##$KISS_ROOT}" "$sys_db/"*/manifest)