summaryrefslogtreecommitdiff
path: root/src/makechrootpkg.in
diff options
context:
space:
mode:
Diffstat (limited to 'src/makechrootpkg.in')
-rw-r--r--src/makechrootpkg.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/makechrootpkg.in b/src/makechrootpkg.in
index f9a9289..895c1de 100644
--- a/src/makechrootpkg.in
+++ b/src/makechrootpkg.in
@@ -311,14 +311,14 @@ fi
# Pass all arguments after -- right to makepkg
makepkg_args+=("${@:$OPTIND}")
-# See if -R or -e was passed to makepkg
+# See if -R, -e or -A was passed to makepkg
for arg in "${@:$OPTIND}"; do
case ${arg%%=*} in
--skip*|--holdver|--ignorearch) verifysource_args+=("$arg") ;;
--repackage|--noextract) keepbuilddir=1 ;;
--*) ;;
- -*A*) verifysource_args+=(-A) ;;
- -*R*|-*e*) keepbuilddir=1 ;;
+ -*A*) verifysource_args+=(-A) ;;&
+ -*R*|-*e*) keepbuilddir=1 ;;&
esac
done