sys-devel/dev86: fix which CC

Closes: https://bugs.gentoo.org/717698
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
This commit is contained in:
Robin H. Johnson
2020-04-21 10:17:36 -07:00
parent 4bf9384a69
commit 555eb4458f
2 changed files with 10 additions and 3 deletions

View File

@@ -52,7 +52,8 @@ src_compile() {
DIST="${D}" \
CC="$(tc-getCC)" \
LIBDIR="/usr/$(get_libdir)/bcc" \
INCLDIR="/usr/$(get_libdir)/bcc"
INCLDIR="/usr/$(get_libdir)/bcc" \
all
export PATH=${S}/bin:${PATH}
@@ -61,7 +62,10 @@ src_compile() {
cd .. || die
cd bootblocks || die
emake DIST="${D}"
emake \
DIST="${D}" \
HOSTCC="$(tc-getCC)"
}
src_install() {

View File

@@ -1,7 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<!-- maintainer-needed -->
<maintainer type="project">
<email>base-system@gentoo.org</email>
<name>Gentoo Base System</name>
</maintainer>
<longdescription>
Bruce's C compiler - Simple C compiler to generate 8086 code
</longdescription>