1
0
mirror of https://codeberg.org/cage/tinmop/ synced 2025-02-01 04:26:47 +01:00

- added form to ensure asdf has been loaded when compiling the package.

This commit is contained in:
cage 2024-05-14 21:33:56 +02:00
parent 946e677acb
commit 25c670d1e7
2 changed files with 2 additions and 0 deletions

View File

@ -96,6 +96,7 @@ dist_man1_MANS = doc/tinmop.man
$(PACKAGE): $(CONF_PATH_FILE) *.asd src/* $(PACKAGE): $(CONF_PATH_FILE) *.asd src/*
$(LISP_COMPILER) \ $(LISP_COMPILER) \
--eval "(require 'asdf)" \
--eval "(push \"$$(pwd)/\" asdf:*central-registry*)" \ --eval "(push \"$$(pwd)/\" asdf:*central-registry*)" \
--eval "(asdf:make '$(PACKAGE) :build-pathname \"../$(PACKAGE)\")" \ --eval "(asdf:make '$(PACKAGE) :build-pathname \"../$(PACKAGE)\")" \
--eval "(uiop:quit)" --eval "(uiop:quit)"

View File

@ -1118,6 +1118,7 @@ uninstall-man: uninstall-man1
$(PACKAGE): $(CONF_PATH_FILE) *.asd src/* $(PACKAGE): $(CONF_PATH_FILE) *.asd src/*
$(LISP_COMPILER) \ $(LISP_COMPILER) \
--eval "(require 'asdf)" \
--eval "(push \"$$(pwd)/\" asdf:*central-registry*)" \ --eval "(push \"$$(pwd)/\" asdf:*central-registry*)" \
--eval "(asdf:make '$(PACKAGE) :build-pathname \"../$(PACKAGE)\")" \ --eval "(asdf:make '$(PACKAGE) :build-pathname \"../$(PACKAGE)\")" \
--eval "(uiop:quit)" --eval "(uiop:quit)"