File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 33# Prefer VERSION from environment if provided (e.g., from GitHub Actions)
44# Extract version from git, or if we're from a zipfile, use dirname
55VERSION ?= $(shell git describe --tags --always --dirty=-modded --abbrev=7 2>/dev/null || \
6- pwd | sed -n 's|.* /c\{0,1\}lightning-v\{0,1\}\([0-9a-f.rc\-]* \) $$|v\1|gp')
6+ pwd | $( SED ) -n 's|.* /c\{0,1\}lightning-v\{0,1\}\([0-9a-f.rc\-]* \) $$|v\1|gp')
77$(info Building version $(VERSION))
88
99# Next release.
@@ -412,7 +412,7 @@ include plugins/Makefile
412412include tests/plugins/Makefile
413413
414414# Only include fuzz tests if OpenSSL >= 3.0, will be disabled on ubuntu focal
415- OPENSSL_VERSION := $(shell openssl version | sed -n 's/OpenSSL \([0-9]\+\) \..*/\1/p')
415+ OPENSSL_VERSION := $(shell openssl version | $( SED ) -n 's/OpenSSL \([0-9]\+\) \..*/\1/p')
416416ifneq ($(shell test $(OPENSSL_VERSION ) -ge 3 && echo yes) ,)
417417include tests/fuzz/Makefile
418418endif
You can’t perform that action at this time.
0 commit comments