build: Quiet automake warning for bupsplit
Use `_SRCS` and not `_SOURCES`, the latter of which makes automake assume there's something for it to do. Closes: #749 Approved by: jlebon
This commit is contained in:
parent
e665e51408
commit
4ebe1ee94b
|
|
@ -24,9 +24,9 @@ noinst_LTLIBRARIES += libostree-kernel-args.la
|
||||||
|
|
||||||
if ENABLE_RUST
|
if ENABLE_RUST
|
||||||
bupsplitpath = @abs_top_builddir@/target/@RUST_TARGET_SUBDIR@/libbupsplit_rs.a
|
bupsplitpath = @abs_top_builddir@/target/@RUST_TARGET_SUBDIR@/libbupsplit_rs.a
|
||||||
BUPSPLIT_RUST_SOURCES = rust/src/bupsplit.rs
|
BUPSPLIT_RUST_SRCS = rust/src/bupsplit.rs
|
||||||
EXTRA_DIST += $(BUPSPLIT_RUST_SOURCES)
|
EXTRA_DIST += $(BUPSPLIT_RUST_SRCS)
|
||||||
$(bupsplitpath): Makefile $(BUPSPLIT_RUST_SOURCES)
|
$(bupsplitpath): Makefile $(BUPSPLIT_RUST_SRCS)
|
||||||
cd $(top_srcdir)/rust && CARGO_TARGET_DIR=@abs_top_builddir@/target cargo build --verbose $(CARGO_RELEASE_ARGS)
|
cd $(top_srcdir)/rust && CARGO_TARGET_DIR=@abs_top_builddir@/target cargo build --verbose $(CARGO_RELEASE_ARGS)
|
||||||
else
|
else
|
||||||
bupsplitpath = libbupsplit.la
|
bupsplitpath = libbupsplit.la
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue