[pacman-dev] [PATCH] makepkg: retrist usage of flags passed to pacman

Dan McGee dpmcgee at gmail.com
Fri Jan 20 12:35:17 EST 2012


On Fri, Jan 20, 2012 at 7:28 AM, Allan McRae <allan at archlinux.org> wrote:
> With pacman-4.0, using --noconfirm or --noprogressbar with -Q or -T
> results in pacman reporting an "invalid option" error. Restrict the
> passing of these options to pacman. Fixes FS#28012.
>
> Signed-off-by: Allan McRae <allan at archlinux.org>
> ---
>  scripts/makepkg.sh.in |    6 +++++-
>  1 files changed, 5 insertions(+), 1 deletions(-)
>
> diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in
> index 4792c5c..4f95b73 100644
> --- a/scripts/makepkg.sh.in
> +++ b/scripts/makepkg.sh.in
> @@ -412,7 +412,11 @@ download_file() {
>
>  run_pacman() {
>        local cmd
> -       printf -v cmd "%q " "$PACMAN" $PACMAN_OPTS "$@"
> +       if [[ ! $1 = -@(T|Qq) ]]; then
> +               printf -v cmd "%q " "$PACMAN" $PACMAN_OPTS "$@"
> +       else
> +               printf -v cmd "%q " "$PACMAN" $PACMAN_OPTS "$@"
Am I missing something here? These two printf lines still look identical...

> +       fi
>        if (( ! ASROOT )) && [[ ! $1 = -@(T|Qq) ]]; then
>                if type -p sudo >/dev/null; then
>                        cmd="sudo $cmd"
> --
> 1.7.8.4
>
>


More information about the pacman-dev mailing list