mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-20 20:43:09 -04:00
app-misc/xplr: fix dobin failure (nonexistent path)
In src_install(), the dobin line causes an installation failure: !!! dobin: target/release/xplr does not exist Using cargo_target_dir() from the cargo eclass resolves the installation failure. Signed-off-by: Ashlen <dev@anthes.is> Signed-off-by: David Roman <davidroman96@gmail.com>
This commit is contained in:
@@ -248,7 +248,7 @@ src_compile() {
|
||||
src_install() {
|
||||
dodoc README.md
|
||||
|
||||
dobin target/$(usex debug debug release)/xplr
|
||||
dobin $(cargo_target_dir)/xplr
|
||||
newicon -s 16 assets/icon/${PN}16.png ${PN}.png
|
||||
newicon -s 32 assets/icon/${PN}32.png ${PN}.png
|
||||
newicon -s 64 assets/icon/${PN}64.png ${PN}.png
|
||||
|
||||
Reference in New Issue
Block a user