makechrootpkg: Install the built packages before running namcap to reduce false positives and check inter split package dependencies.

This commit is contained in:
Pierre Schmitz 2012-03-05 16:28:09 +01:00
parent 2d9a99ee15
commit 181646d03b
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ while getopts 'hcudr:I:l:n' arg; do
r) passeddir="$OPTARG" ;;
I) install_pkg="$OPTARG" ;;
l) copy="$OPTARG" ;;
n) run_namcap=true ;;
n) run_namcap=true; makepkg_args="$makepkg_args -i" ;;
*) makepkg_args="$makepkg_args -$arg $OPTARG" ;;
esac
done