net-fs/httpdirfs: fix cc QA issue

Closes: https://bugs.gentoo.org/785127
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Maciej Barć <xgqt@riseup.net>
This commit is contained in:
Maciej Barć
2021-04-24 14:56:28 +02:00
parent f405028bfb
commit 8c3835f332
2 changed files with 16 additions and 4 deletions

View File

@@ -3,6 +3,8 @@
EAPI=7
inherit toolchain-funcs
DESCRIPTION="Filesystem to mount HTTP directory listings, with a permanent cache"
HOMEPAGE="https://github.com/fangfufu/httpdirfs"
@@ -30,6 +32,10 @@ DEPEND="
"
RDEPEND="${DEPEND}"
src_install() {
emake prefix="${D}"/usr install
src_compile () {
emake CC="$(tc-getCC)"
}
src_install() {
emake prefix="${D}/usr" install
}

View File

@@ -3,6 +3,8 @@
EAPI=7
inherit toolchain-funcs
DESCRIPTION="Filesystem to mount HTTP directory listings, with a permanent cache"
HOMEPAGE="https://github.com/fangfufu/httpdirfs"
@@ -30,6 +32,10 @@ DEPEND="
"
RDEPEND="${DEPEND}"
src_install() {
emake prefix="${D}"/usr install
src_compile () {
emake CC="$(tc-getCC)"
}
src_install() {
emake prefix="${D}/usr" install
}