diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2013-01-22 20:12:36 +0100 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2013-01-22 20:12:36 +0100 |
commit | 10eba28151b1bf3ca5c29ccfb524f0cb85958c1d (patch) | |
tree | 809ee78567ce3dd36f707ec5bb86a6ebb6950d56 /archbuild.in | |
parent | 9cef7e0a9ef7b2431028a441f5a23d41447931ec (diff) | |
download | devtools32-10eba28151b1bf3ca5c29ccfb524f0cb85958c1d.tar.xz |
archbuild: fix default build flags20130122
Diffstat (limited to 'archbuild.in')
-rw-r--r-- | archbuild.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archbuild.in b/archbuild.in index 44288df..4054de7 100644 --- a/archbuild.in +++ b/archbuild.in @@ -38,7 +38,7 @@ while getopts 'hcr:' arg; do done # Pass all arguments after -- right to makepkg -makechrootpkg_args=("${@:$OPTIND}") +makechrootpkg_args+=("${@:$OPTIND}") if (( EUID )); then die 'This script must be run as root.' |