summaryrefslogtreecommitdiffstats
path: root/abuild.in
diff options
context:
space:
mode:
Diffstat (limited to 'abuild.in')
-rwxr-xr-xabuild.in6
1 files changed, 4 insertions, 2 deletions
diff --git a/abuild.in b/abuild.in
index cbecfa4..d0b61a3 100755
--- a/abuild.in
+++ b/abuild.in
@@ -122,6 +122,8 @@ sanitycheck() {
[ -n "$makedepend" ] && die "APKBUILD contains 'makedepend'. It should be makedepends"
grep '^# Maintainer:' $APKBUILD >/dev/null || warning "No maintainer"
+
+ makedepends_has 'g++' && warning "g++ should not be in makedepends"
return 0
}
@@ -403,8 +405,8 @@ trace_apk_deps() {
# first check if its provide by same apkbuild
for j in "$dir"/../*/.provides-so; do
grep -w "$i" "$j" >/dev/null || continue
- found=${found%/.*}
- found=${j##*/}
+ found=${j%/.provides-so}
+ found=${found##*/}
break
done
# check apk db if not provided by a subpackage