diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-05-27 02:08:58 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-05-27 02:08:58 -0400 |
commit | 2ad4125443fbccf5e3c955f14dd2dd9c463b2557 (patch) | |
tree | db2d8d04855f994dba81e14ebb035302e50d6b52 /src/pkgbuild-check-nonfree | |
parent | 4e36277689f92772e474c0829cb7f517aa06d58d (diff) |
add tests for libreblacklist, fix a few bugs
Diffstat (limited to 'src/pkgbuild-check-nonfree')
-rwxr-xr-x | src/pkgbuild-check-nonfree | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkgbuild-check-nonfree b/src/pkgbuild-check-nonfree index c37b0bf..be9d20d 100755 --- a/src/pkgbuild-check-nonfree +++ b/src/pkgbuild-check-nonfree @@ -51,7 +51,7 @@ check_deps() ( ) local ret=0 for pkg in "${pkgs[@]}"; do - local line="$(blacklist-lookup "$pkg")" + local line="$(blacklist-cat|blacklist-lookup "$pkg")" local rep="$(blacklist-get-rep <<<"$line")" if [[ -z $line ]]; then # not mentioned in blacklist; free |