diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-29 20:01:52 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-29 20:01:52 +0000 |
commit | 15a3f24286c3e5a4488547d9961e8b23b39793aa (patch) | |
tree | d668ef01513276eb814385284b968b9c29d38661 /abuild.in | |
parent | 4cc049802adcb8e38deef27ad3c5b727c8f8fec6 (diff) | |
download | abuild-15a3f24286c3e5a4488547d9961e8b23b39793aa.tar.gz abuild-15a3f24286c3e5a4488547d9961e8b23b39793aa.tar.bz2 abuild-15a3f24286c3e5a4488547d9961e8b23b39793aa.tar.xz abuild-15a3f24286c3e5a4488547d9961e8b23b39793aa.zip |
abuild: fix for dynamic dependency detection
Diffstat (limited to 'abuild.in')
-rwxr-xr-x | abuild.in | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |