diff options
author | Andrej <xentec@users.noreply.github.com> | 2017-04-27 08:50:35 +0200 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2017-06-21 18:15:06 +0000 |
commit | 56355bff2180a50115f89d3e5ba0a03ab850c1f4 (patch) | |
tree | ecd50f4a05063d38426b54bf764b1b25d29758f4 /abuild.in | |
parent | 5268ae8076d2e46a5495017b787c12fc1bcf1703 (diff) | |
download | abuild-56355bff2180a50115f89d3e5ba0a03ab850c1f4.tar.gz abuild-56355bff2180a50115f89d3e5ba0a03ab850c1f4.tar.bz2 abuild-56355bff2180a50115f89d3e5ba0a03ab850c1f4.tar.xz abuild-56355bff2180a50115f89d3e5ba0a03ab850c1f4.zip |
Allow $patch_args to pass multiple arguments to patch
Diffstat (limited to 'abuild.in')
-rw-r--r-- | abuild.in | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -597,7 +597,7 @@ default_prepare() { case ${i%::*} in *.patch) msg "${i%::*}" - patch "${patch_args:--p1}" -i "$srcdir/${i%::*}" || return 1 + patch ${patch_args:--p1} -i "$srcdir/${i%::*}" || return 1 ;; esac done |