From b2d43c01894d11c37c401e8993200cdb5293ec5d Mon Sep 17 00:00:00 2001 From: Shawn Davis Date: Mon, 17 Apr 2023 12:39:46 -0500 Subject: [PATCH] Fixed reading RELEASE in make. --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 0681ec0..9debbe1 100644 --- a/Makefile +++ b/Makefile @@ -11,8 +11,8 @@ COVERAGE_PATH := docs/build/html/coverage # $(file) may not work depending upon version of make. #RELEASE := $(strip $(file < RELEASE.txt)) -RELEASE := $(strip `cat RELEASE.txt`) -VERSION := $(strip `cat VERSION.txt`) +RELEASE := $(strip $(shell cat RELEASE.txt)) +VERSION := $(strip $(shell cat VERSION.txt)) DOCS_PATH := $(PROJECT_HOME)/docs_diff6_com DOCS_WWW := $(DOCS_PATH)/www @@ -74,7 +74,6 @@ publish: secure: bandit -r $(PACKAGE_NAME); - #> support - Build support (help) and reference documentation. support: cd docs && make dirhtml;