diff options
author | Joshua Ismael Haase Hernández <hahj87@gmail.com> | 2011-06-22 03:23:26 -0500 |
---|---|---|
committer | Joshua Ismael Haase Hernández <hahj87@gmail.com> | 2011-06-22 03:23:26 -0500 |
commit | 7499b4f620b052e7ced69972a0ad368cb648f2a7 (patch) | |
tree | 5e71355a1a5d76c858687ec99ea8431da9895184 /fullpkg | |
parent | ad11f4aee0e7af9dcba780d464edef34cc937d4a (diff) |
Fixed libremakepkg error
Diffstat (limited to 'fullpkg')
-rwxr-xr-x | fullpkg | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -36,8 +36,6 @@ function usage { echo " -m max_level : check deps until this level" echo " -r \"command\" : use this instead of \"$FULLBUILDCMD\"" echo " -o : work offline (avoid queuing)" - # printf " -f pkgname : build even when a package has been built. " - # printf " Use it as many times as needed\n" echo } @@ -259,9 +257,7 @@ function _pkg_build () { msg2 "Checking for non free deps" pkgbuild-check-nonfree || { -# pkgbuild-check-nonfree fails with 15 if there are nonfree deps, -# fails with something else if blacklist can't be retrieved - if [ $? -eq 15 ]; then + if [ $? -eq 15 ]; then # this error means nonfree others means fail. # log they have nonfree deps and so didn't build echo "nonfree:$(basename $PWD)" >> $build_dir/log # take out package from $buildorder |