summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjörn Bidar2023-11-20 19:22:29 +0200
committerBjörn Bidar2023-11-20 19:22:51 +0200
commitbe8228efcb16e0ff96aead7f420a5fd27f4e34ec (patch)
treeb00a2284499d926ebefb3ffe516112ed7011c60d
parente9554dfe5f025e1905c34b0405e94e971d23e6d6 (diff)
downloadaur-be8228efcb16e0ff96aead7f420a5fd27f4e34ec.tar.gz
Fix quoting when applying patches
Signed-off-by: Björn Bidar <bjorn.bidar@thaodan.de>
-rw-r--r--PKGBUILD2
1 files changed, 1 insertions, 1 deletions
diff --git a/PKGBUILD b/PKGBUILD
index d461ae7c1ee3..0046d7c5554d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -139,7 +139,7 @@ prepare() {
echo -n "$_mozilla_api_key" >mozilla-api-key
echo "ac_add_options --with-mozilla-api-keyfile=\"$PWD/mozilla-api-key\"" >>.mozconfig
- for patch in "$srcdir/*.patch" ; do
+ for patch in "$srcdir"/*.patch ; do
echo "Applying $patch"
patch -p1 -i "$patch"
done