blob: a3c65ab97f2dc9aaac068c73c9530a35b2e50918 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
From bb0324e39824fc0de14fd4b9ad539849ff27c619 Mon Sep 17 00:00:00 2001
From: Natanael Copa <ncopa@alpinelinux.org>
Date: Thu, 28 Nov 2019 12:46:12 +0000
Subject: [PATCH] abuild: fix applying patches from https
fix patches such as https://dev.alpinelinux.org/archive/domoticz/openzwave-1.6.patch
previously it would only work with the filenamename.patch::$url syntax
---
abuild.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/abuild.in b/abuild.in
index 141cc54..5654d8f 100644
--- a/abuild.in
+++ b/abuild.in
@@ -682,7 +682,7 @@ default_prepare() {
case ${i%::*} in
*.patch)
msg "${i%::*}"
- patch ${patch_args:--p1} -i "$srcdir/${i%::*}" || return 1
+ patch ${patch_args:--p1} -i "$srcdir/$(filename_from_uri $i)" || return 1
;;
esac
done
--
2.24.0
|