mirror of
https://github.com/koverstreet/bcachefs-tools.git
synced 2025-03-31 00:00:03 +03:00
fix(makefile): locate built bin with CARGO_BUILD_TARGET set
When this environment variable is set, e.g. for some cross compile setups, the target dir is nested a little further. Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
This commit is contained in:
parent
3d972489a8
commit
1a8e684ae0
9
Makefile
9
Makefile
@ -22,6 +22,13 @@ else
|
|||||||
CARGO_CLEAN_ARGS = --quiet
|
CARGO_CLEAN_ARGS = --quiet
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
# when cross compiling, cargo places the built binary in a different location
|
||||||
|
ifdef CARGO_BUILD_TARGET
|
||||||
|
BUILT_BIN = target/$(CARGO_BUILD_TARGET)/release/bcachefs
|
||||||
|
else
|
||||||
|
BUILT_BIN = target/release/bcachefs
|
||||||
|
endif
|
||||||
|
|
||||||
# Prevent recursive expansions of $(CFLAGS) to avoid repeatedly performing
|
# Prevent recursive expansions of $(CFLAGS) to avoid repeatedly performing
|
||||||
# compile tests
|
# compile tests
|
||||||
CFLAGS:=$(CFLAGS)
|
CFLAGS:=$(CFLAGS)
|
||||||
@ -195,7 +202,7 @@ cmd_version.o : .version
|
|||||||
install: INITRAMFS_HOOK=$(INITRAMFS_DIR)/hooks/bcachefs
|
install: INITRAMFS_HOOK=$(INITRAMFS_DIR)/hooks/bcachefs
|
||||||
install: INITRAMFS_SCRIPT=$(INITRAMFS_DIR)/scripts/local-premount/bcachefs
|
install: INITRAMFS_SCRIPT=$(INITRAMFS_DIR)/scripts/local-premount/bcachefs
|
||||||
install: bcachefs $(optional_install)
|
install: bcachefs $(optional_install)
|
||||||
$(INSTALL) -m0755 -D target/release/bcachefs -t $(DESTDIR)$(ROOT_SBINDIR)
|
$(INSTALL) -m0755 -D $(BUILT_BIN) -t $(DESTDIR)$(ROOT_SBINDIR)
|
||||||
$(INSTALL) -m0644 -D bcachefs.8 -t $(DESTDIR)$(PREFIX)/share/man/man8/
|
$(INSTALL) -m0644 -D bcachefs.8 -t $(DESTDIR)$(PREFIX)/share/man/man8/
|
||||||
$(INSTALL) -m0755 -D initramfs/script $(DESTDIR)$(INITRAMFS_SCRIPT)
|
$(INSTALL) -m0755 -D initramfs/script $(DESTDIR)$(INITRAMFS_SCRIPT)
|
||||||
$(INSTALL) -m0755 -D initramfs/hook $(DESTDIR)$(INITRAMFS_HOOK)
|
$(INSTALL) -m0755 -D initramfs/hook $(DESTDIR)$(INITRAMFS_HOOK)
|
||||||
|
Loading…
Reference in New Issue
Block a user