diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-07-12 13:17:39 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-07-12 13:17:39 -0300 |
commit | 6a0a79c35fe16c0557fabe6661fd58bd6e53d23c (patch) | |
tree | ca08174c9277c5dd2c02e4cdc99b62c8e5f9ef62 | |
parent | 7aa8921c81306d8bbd8d29d351a6e263ae1a5761 (diff) | |
parent | 6b6341d3d8f5ac6d1f2248edcd3b29672a40cb7e (diff) |
Merge branch 'master' of ssh://vparabola/srv/git/projects/libretools
-rwxr-xr-x | pkgbuild-check-nonfree | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgbuild-check-nonfree b/pkgbuild-check-nonfree index 21842ac..b7c1237 100755 --- a/pkgbuild-check-nonfree +++ b/pkgbuild-check-nonfree @@ -40,6 +40,7 @@ function get_blacklist { # Download the blacklist. exit 1 } warning "Using local copy of blacklist" + } } function check_deps { # Check wheter a package depends on non-free @@ -67,6 +68,8 @@ function check_deps { # Check wheter a package depends on non-free fi fi done + + return $ev } source /etc/libretools.conf @@ -95,4 +98,5 @@ get_blacklist check_deps -exit $ev +exit $? + |