blob: df89cc6ae07445d273193172b3d0155181ea03a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
diff --git a/abuild.in b/abuild.in
index a121dc5..bf3f505 100755
--- a/abuild.in
+++ b/abuild.in
@@ -415,7 +415,7 @@ trace_apk_deps() {
error "Could not find dependency for $i"
return 1
fi
- if grep -w "^depend = $found" "$dir"/.PKGINFO >/dev/null ; then
+ if grep -w "^depend = ${found}$" "$dir"/.PKGINFO >/dev/null ; then
warning "You can remove '$found' from depends"
continue
fi
|