From 4d86ff5a85cc059e8e0c7898d02a3ab83478fd7e Mon Sep 17 00:00:00 2001 From: mreid-tt <943378+mreid-tt@users.noreply.github.com> Date: Mon, 27 Nov 2023 20:57:38 -0400 Subject: [PATCH] Amend rust build args --- cross/syncstorage-rs/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cross/syncstorage-rs/Makefile b/cross/syncstorage-rs/Makefile index 503355d7dcc..6fe253d582e 100644 --- a/cross/syncstorage-rs/Makefile +++ b/cross/syncstorage-rs/Makefile @@ -14,7 +14,8 @@ HOMEPAGE = https://github.com/mozilla-services/syncstorage-rs/ COMMENT = Mozilla Sync Storage built with Rust. LICENSE = https://github.com/mozilla-services/syncstorage-rs/blob/master/LICENSE -# install the main server program -CARGO_BUILD_ARGS += --path ./syncserver --no-default-features --features=syncstorage-db/mysql --locked +# arguments to install the main server program +RUST_SRC_DIR = $(WORK_DIR)/$(PKG_DIR)/syncserver +ENV += RUSTFLAGS="--no-default-features --features=syncstorage-db/mysql --locked" include ../../mk/spksrc.cross-rust.mk