summaryrefslogtreecommitdiff
path: root/src/pkgbuild-check-nonfree
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2013-08-05 22:51:17 -0600
committerLuke Shumaker <LukeShu@sbcglobal.net>2013-08-05 22:51:17 -0600
commit45ed1620d3aaad1978782a437211fc51b383eec6 (patch)
treeaacd0665b62cfa95ee1a4115f26e0e20437c35a0 /src/pkgbuild-check-nonfree
parentb853e0a808ed5c2fe4c1850d46eb2370c967f46d (diff)
pkgbuild-check-nonfree: make the messages about the blacklist
Diffstat (limited to 'src/pkgbuild-check-nonfree')
-rwxr-xr-xsrc/pkgbuild-check-nonfree8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/pkgbuild-check-nonfree b/src/pkgbuild-check-nonfree
index 39516f9..b371540 100755
--- a/src/pkgbuild-check-nonfree
+++ b/src/pkgbuild-check-nonfree
@@ -52,18 +52,18 @@ check_deps() (
local rep="$(blacklist-get-rep <<<"$line")"
if [[ -z $line ]]; then
# not mentioned in blacklist; free
- plain '%s: free' "$pkg"
+ plain '%s: not blacklisted' "$pkg"
continue
elif [[ -z $rep ]]; then
# non-free with no replacement
- plain '%s: non-free' "$pkg"
+ plain '%s: blacklisted' "$pkg"
ret=1
else
# non-free with free replacement
if [[ "$rep" == "$pkg" ]]; then
- plain '%s: repackaged with the same name.' "$pkg"
+ plain '%s: repackaged with the same name' "$pkg"
else
- plain '%s: replaced by ' "$pkg" "$rep"
+ plain '%s: replaced by %s' "$pkg" "$rep"
fi
fi
done