summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2023-05-01 22:05:27 -0700
committerArmin Kuster <akuster808@gmail.com>2023-05-07 12:31:13 -0400
commit3bf5a8dbd969762a9bbc643871edcd0617094747 (patch)
treed202c12680952f4dfb3fdfdd2e4fe84c98787333
parenta1de54c73439a4fb2ff8e63456cb52ec2242b377 (diff)
downloadmeta-openembedded-3bf5a8dbd969762a9bbc643871edcd0617094747.tar.gz
httpfs2: Do not use S during compile/install tasks
Point to SOURCEFORGE_MIRROR instead of hardcoding one Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit edf94a6e8dd8d5c6942790488a501e0e4c628b20) Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r--meta-filesystems/recipes-filesystems/httpfs2-fuse/httpfs2_0.1.5.bb9
1 files changed, 3 insertions, 6 deletions
diff --git a/meta-filesystems/recipes-filesystems/httpfs2-fuse/httpfs2_0.1.5.bb b/meta-filesystems/recipes-filesystems/httpfs2-fuse/httpfs2_0.1.5.bb
index 0086551f62..5dc3ea6632 100644
--- a/meta-filesystems/recipes-filesystems/httpfs2-fuse/httpfs2_0.1.5.bb
+++ b/meta-filesystems/recipes-filesystems/httpfs2-fuse/httpfs2_0.1.5.bb
@@ -8,18 +8,15 @@ inherit pkgconfig
8DEPENDS += "fuse" 8DEPENDS += "fuse"
9RDEPENDS:${PN} += "fuse" 9RDEPENDS:${PN} += "fuse"
10 10
11SRC_URI += "https://astuteinternet.dl.sourceforge.net/project/httpfs/httpfs2/httpfs2-${PV}.tar.gz" 11SRC_URI += "${SOURCEFORGE_MIRROR}/project/httpfs/httpfs2/httpfs2-${PV}.tar.gz"
12SRC_URI[sha256sum] = "01cb4bb38deb344f540da6f1464dc7edbdeb51213ad810b8c9c282c1e17e0fc1" 12SRC_URI[sha256sum] = "01cb4bb38deb344f540da6f1464dc7edbdeb51213ad810b8c9c282c1e17e0fc1"
13 13
14S = "${WORKDIR}/httpfs2-${PV}" 14S = "${WORKDIR}/httpfs2-${PV}"
15 15
16do_compile() { 16do_compile() {
17 cd ${S} 17 oe_runmake -C ${S} httpfs2
18 oe_runmake httpfs2
19} 18}
20 19
21do_install() { 20do_install() {
22 cd ${S} 21 install -Dm 0755 ${S}/httpfs2 ${D}${bindir}/httpfs2
23 install -d ${D}${bindir}
24 install -m 0755 httpfs2 ${D}${bindir}
25} 22}