diff options
author | Seth Price <sprice623@aol.com> | 2023-08-13 13:31:29 -0400 |
---|---|---|
committer | Seth Price <sprice623@aol.com> | 2023-08-13 13:36:28 -0400 |
commit | 25cde59babd28185db8b91454af1183251d0242b (patch) | |
tree | 4c7f509f699fc11e9dfbd39698282e1957f624e5 /dev-lang | |
parent | app-misc/xplr: add myself as a maintainer (diff) | |
download | guru-25cde59babd28185db8b91454af1183251d0242b.tar.gz guru-25cde59babd28185db8b91454af1183251d0242b.tar.bz2 guru-25cde59babd28185db8b91454af1183251d0242b.zip |
dev-lang/cc65: specify `$PREFIX` at compile
.macpack fails to find the $PREFIX/share/cc65 directory when
`$PREFIX` is not specified at compile time—not install time.
See <https://github.com/cc65/cc65/issues/1726> for more info.
Signed-off-by: Seth Price <sprice623@aol.com>
Diffstat (limited to 'dev-lang')
-rw-r--r-- | dev-lang/cc65/cc65-2.19-r1.ebuild (renamed from dev-lang/cc65/cc65-2.19.ebuild) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev-lang/cc65/cc65-2.19.ebuild b/dev-lang/cc65/cc65-2.19-r1.ebuild index 887df3f00..6f80345a5 100644 --- a/dev-lang/cc65/cc65-2.19.ebuild +++ b/dev-lang/cc65/cc65-2.19-r1.ebuild @@ -14,7 +14,7 @@ LICENSE="ZLIB" SLOT="0" src_compile() { - emake + emake PREFIX="${EPREFIX}/usr" } src_install() { |