Skip to content

Commit a3d6d35

Browse files
committed
Changelog-Fixed: Replacing sed by $(SED) in Makefile
1 parent 98a188b commit a3d6d35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ include plugins/Makefile
412412
include 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')
416416
ifneq ($(shell test $(OPENSSL_VERSION) -ge 3 && echo yes),)
417417
include tests/fuzz/Makefile
418418
endif

0 commit comments

Comments
 (0)