summaryrefslogtreecommitdiff
path: root/makechrootpkg.in
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2012-03-05 16:28:09 +0100
committerPierre Schmitz <pierre@archlinux.de>2012-03-05 16:28:09 +0100
commit181646d03b43e7bab01d59a807e05e87be1c1a2e (patch)
tree91622b8d7ab85fc9b48f2a525c791153f608fb45 /makechrootpkg.in
parent2d9a99ee152188ea45ffba540a40b269c8807798 (diff)
makechrootpkg: Install the built packages before running namcap to reduce false positives and check inter split package dependencies.
Diffstat (limited to 'makechrootpkg.in')
-rw-r--r--makechrootpkg.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/makechrootpkg.in b/makechrootpkg.in
index 166b89b..e06f46c 100644
--- a/makechrootpkg.in
+++ b/makechrootpkg.in
@@ -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