mirror of
https://github.com/moparisthebest/pacman
synced 2024-12-22 15:58:50 -05:00
makepkg: fix false error with multiple libdeps
With multiple items in $libdepends this check only worked for the first one, everything after this returned an error. This was probably an issue with \s being treated wrong. Fix-by: Dave Reisner <dreisner@archlinux.org> Signed-off-by: Florian Pritz <bluewind@xinu.at>
This commit is contained in:
parent
fbfcd86650
commit
ea7fc8962a
@ -1152,7 +1152,8 @@ write_pkginfo() {
|
||||
if [[ $it = *.so ]]; then
|
||||
# check if the entry has been found by find_libdepends
|
||||
# if not, it's unneeded; tell the user so he can remove it
|
||||
if [[ ! $libdepends =~ (^|\s)${it}=.* ]]; then
|
||||
printf -v re '(^|\s)%s=.*' "$it"
|
||||
if [[ ! $libdepends =~ $re ]]; then
|
||||
error "$(gettext "Cannot find library listed in %s: %s")" "'depends'" "$it"
|
||||
return 1
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user