summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLevente Polyak <levente@leventepolyak.net>2020-09-22 23:38:45 +0200
committerJustus Winter <justus@sequoia-pgp.org>2020-09-28 08:32:49 +0200
commitc84afa6db3f9605d9c763b07484c78fab7bc659f (patch)
treea6f43cf09a645251f66402f89ef14966be0473e7
parent5f58ee77461fcb420a9f89c86967c9dc667ce588 (diff)
ffi: only build during build-release target instead of installing
This looks like an accident and should just be a build-release of the store crate. The built lib will by linked in ffi language modules like python with LD_LIBRARY_PATH so no system installation is and should be needed for purely building.
-rw-r--r--ffi/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffi/Makefile b/ffi/Makefile
index 3dddfcd4..1feb7b53 100644
--- a/ffi/Makefile
+++ b/ffi/Makefile
@@ -62,7 +62,7 @@ build-release:
$(CARGO) build $(CARGO_FLAGS) --release --package sequoia-ffi
$(MAKE) -Clang/python build-release
$(call sequoia_pc,$(CARGO_TARGET_DIR)/release,true)
- $(MAKE) -C../store install
+ $(MAKE) -C../store build-release
.PHONY: install
install: build-release