From be5e0541cb0f028c4e78bdcba37428c6c0fefef0 Mon Sep 17 00:00:00 2001 From: Nathan Vance Date: Wed, 10 Sep 2025 21:12:18 -0400 Subject: Use $(shell ...) rather than backticks --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 61b42b8..fd9dba7 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ exec_prefix ?= $(prefix) libdir ?= $(exec_prefix)/lib bindir ?= $(exec_prefix)/bin includedir ?= $(prefix)/include -completions ?= `pkg-config --variable=completionsdir bash-completion` +completions ?= $(shell pkg-config --variable=completionsdir bash-completion) $(EXECUTABLE): $(OBJECTS) libbible $(CXX) $(OBJECTS) -o $@ $(LDFLAGS) -Lsrc/lib -lbible -- cgit v1.2.3