From e20bb9b998eda964b0ee2aab23281b2b01835ebe Mon Sep 17 00:00:00 2001 From: Roger Binns Date: Mon, 25 Nov 2024 09:43:04 -0800 Subject: [PATCH] Check man page is in source --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ea8c2053..75cdcfa1 100644 --- a/Makefile +++ b/Makefile @@ -236,7 +236,7 @@ source: source_nocheck # Make the source and then check it builds and tests corr rm -rf work/$(VERDIR) cd work ; unzip -q ../dist/$(VERDIR).zip # Make certain various files do/do not exist - for f in doc/vfs.html doc/_sources/pysqlite.txt apsw/trace.py src/faultinject.h; do test -f work/$(VERDIR)/$$f ; done + for f in man/cli.1 doc/vfs.html doc/_sources/pysqlite.txt apsw/trace.py src/faultinject.h; do test -f work/$(VERDIR)/$$f ; done for f in sqlite3.c sqlite3/sqlite3.c debian/control ; do test ! -f work/$(VERDIR)/$$f ; done # Test code works cd work/$(VERDIR) ; $(PYTHON) setup.py fetch --version=$(SQLITEVERSION) --all build_ext --inplace --enable-all-extensions build_test_extension test