Skip to content

Commit

Permalink
Run meson inside the virtualenv in the Makefile.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpc-lip6 committed Oct 11, 2023
1 parent 87b325f commit 069d39b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ pdm_deps: pip_pdm


install: check_dir pdm_deps
@meson setup $(BUILD_ROOT)
@meson configure $(BUILD_ROOT) --prefix $(INST_ROOT)
@ninja -v -C $(BUILD_ROOT) install
@$(venv); meson setup $(BUILD_ROOT)
@$(venv); meson configure $(BUILD_ROOT) --prefix $(INST_ROOT)
@$(venv); ninja -v -C $(BUILD_ROOT) install
@echo ""; \
echo "============================================================================"; \
echo "Coriolis has been successfully built"; \
Expand Down

0 comments on commit 069d39b

Please sign in to comment.