diff options
Diffstat (limited to 'abuild.in')
-rw-r--r-- | abuild.in | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -2222,6 +2222,7 @@ usage() { -R Recursively build and install missing dependencies (using sudo) -s Set source package destination directory -u Recursively build and upgrade all dependencies (using sudo) + -v Verbose: show every command as it is run (very noisy) Commands: build Compile and install package into \$pkgdir @@ -2259,6 +2260,7 @@ APKBUILD="${APKBUILD:-./APKBUILD}" unset force unset recursive while getopts "AcdD:fFhkKimnp:P:qrRs:u" opt; do +while getopts "AcdD:fFhkKimnp:P:qrRs:uv" opt; do case $opt in 'A') echo "$CARCH"; exit 0;; 'c') enable_colors @@ -2280,6 +2282,7 @@ while getopts "AcdD:fFhkKimnp:P:qrRs:u" opt; do 's') SRCDEST=$OPTARG;; 'u') upgrade="-u" recursive="-R";; + 'v') set -x;; esac done shift $(( $OPTIND - 1 )) |