logo

utils-std

Collection of commonly available Unix tools git clone https://anongit.hacktivis.me/git/utils-std.git
commit: deaff58249d08776bde83870cc0452e9bd2d6536
parent f9190a434c90371c075f9c297dd901fa67a97e4e
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Mon, 26 Aug 2024 10:34:38 +0200

Makefile: pass LDSTATIC to ./check-{cmds,libs}.sh

Diffstat:

MMakefile4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile @@ -26,12 +26,12 @@ selfcheck: selfcheck-cmds selfcheck-libs .PHONY: selfcheck-cmds selfcheck-cmds: $(EXE) - ./check-cmds.sh + LDSTATIC=$(LDSTATIC) ./check-cmds.sh .PHONY: selfcheck-libs TEST_LIBS = test-lib/mode test-lib/strtodur test-lib/symbolize_mode test-lib/truncation test-lib/sha1 selfcheck-libs: $(TEST_LIBS) - ./check-libs.sh $(TEST_LIBS) + LDSTATIC=$(LDSTATIC) ./check-libs.sh $(TEST_LIBS) # Manpages with examples that cram/prysk can grok MAN_EXAMPLES = cmd/readlink.1