summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Alexander Steffens (heftig) <jan.steffens@gmail.com>2017-07-13 19:42:01 +0200
committerJan Alexander Steffens (heftig) <jan.steffens@gmail.com>2017-07-13 19:42:01 +0200
commit0cbc179d212d7a26f8c6c2dcd589726cc20d1022 (patch)
tree89005d78f0afa764be80c6f2491a4a06bb047d04
parenta8f512a665f294657279c6823ff23887dd41a8d5 (diff)
downloaddevtools-0cbc179d212d7a26f8c6c2dcd589726cc20d1022.tar.gz
devtools-0cbc179d212d7a26f8c6c2dcd589726cc20d1022.zip
makechrootpkg: Use long args for makepkg
Slightly more verbose, but also more understandable.
-rw-r--r--makechrootpkg.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/makechrootpkg.in b/makechrootpkg.in
index 23314c6..63e6b10 100644
--- a/makechrootpkg.in
+++ b/makechrootpkg.in
@@ -16,7 +16,7 @@ m4_include(lib/archroot.sh)
shopt -s nullglob
init_variables() {
- default_makepkg_args=(-s --noconfirm -L --holdver)
+ default_makepkg_args=(--syncdeps --noconfirm --log --holdver)
makepkg_args=("${default_makepkg_args[@]}")
repack=false
update_first=false
@@ -329,7 +329,7 @@ main() {
r) passeddir="$OPTARG" ;;
I) install_pkgs+=("$OPTARG") ;;
l) copy="$OPTARG" ;;
- n) run_namcap=true; makepkg_args+=(-i) ;;
+ n) run_namcap=true; makepkg_args+=(--install) ;;
T) temp_chroot=true; copy+="-$$" ;;
U) makepkg_user="$OPTARG" ;;
h|*) usage ;;