diff options
author | Maciej Barć <xgqt@riseup.net> | 2021-04-24 14:56:28 +0200 |
---|---|---|
committer | Maciej Barć <xgqt@riseup.net> | 2021-04-24 14:56:28 +0200 |
commit | 8c3835f3329c3e86b488a2521d25bd1f1c9be6c3 (patch) | |
tree | ddad09081ddce0e5c0b40b130b2c85b7d67a054a /net-fs | |
parent | gui-apps/paperde: add missing extra-cmake-modules dep; mv MY_PV (diff) | |
download | guru-8c3835f3329c3e86b488a2521d25bd1f1c9be6c3.tar.gz guru-8c3835f3329c3e86b488a2521d25bd1f1c9be6c3.tar.bz2 guru-8c3835f3329c3e86b488a2521d25bd1f1c9be6c3.zip |
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>
Diffstat (limited to 'net-fs')
-rw-r--r-- | net-fs/httpdirfs/httpdirfs-1.2.0.ebuild | 8 | ||||
-rw-r--r-- | net-fs/httpdirfs/httpdirfs-9999.ebuild | 8 |
2 files changed, 14 insertions, 2 deletions
diff --git a/net-fs/httpdirfs/httpdirfs-1.2.0.ebuild b/net-fs/httpdirfs/httpdirfs-1.2.0.ebuild index 0ac20788a..9289a9f95 100644 --- a/net-fs/httpdirfs/httpdirfs-1.2.0.ebuild +++ b/net-fs/httpdirfs/httpdirfs-1.2.0.ebuild @@ -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_compile () { + emake CC="$(tc-getCC)" +} + src_install() { - emake prefix="${D}"/usr install + emake prefix="${D}/usr" install } diff --git a/net-fs/httpdirfs/httpdirfs-9999.ebuild b/net-fs/httpdirfs/httpdirfs-9999.ebuild index 0ac20788a..9289a9f95 100644 --- a/net-fs/httpdirfs/httpdirfs-9999.ebuild +++ b/net-fs/httpdirfs/httpdirfs-9999.ebuild @@ -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_compile () { + emake CC="$(tc-getCC)" +} + src_install() { - emake prefix="${D}"/usr install + emake prefix="${D}/usr" install } |