From 1ce98026895a49f34e6834e52897076ccc45c88d Mon Sep 17 00:00:00 2001 From: cedounet <134267244+cedounet@users.noreply.github.com> Date: Sun, 29 Oct 2023 17:26:33 +0000 Subject: [PATCH] Makefile tools version (#266) * Fix details on tools version display in makefile - Show OS version - Use macro instead of harcoded tool for convert. --- book/makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/book/makefile b/book/makefile index f7d1de7..b08b1fe 100644 --- a/book/makefile +++ b/book/makefile @@ -288,7 +288,9 @@ quick_ebook: cover/cover-page.xbb # run latex only once no biber, ref etc... show_tools_version: # Show version of tools used on the build machine - git log -n 1 @echo "" - - ${SHELL} --version + - uname -a + @echo "" + - $(SHELL) --version @echo "" - latexmk --version @echo "" @@ -310,11 +312,10 @@ show_tools_version: # Show version of tools used on the build machine @echo "" - ruby --version @echo "" - - convert --version + - $(CONVERT_PIC) --version @echo "" - rsync --version - # You can find the value of variable X with the following command: # make print-X print-%: ; @echo $* = $($*) # Print a makefile variable