From eed56aaf99b2ff738f14a092c9b20a621a37a148 Mon Sep 17 00:00:00 2001 From: Luca Saiu Date: Wed, 1 Dec 2021 14:20:53 +0100 Subject: [PATCH] exchange the definitions of SEQUOIA_LDFLAGS and SEQUOIA_LIB , which were used incorrectly MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See the Autoconf manual, ยง{Preset Output Variables} about the variables LDFLAGS and LIBS. --- Makefile.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.conf b/Makefile.conf index 79169c6a..fcc41945 100644 --- a/Makefile.conf +++ b/Makefile.conf @@ -342,10 +342,10 @@ ifeq ($(SEQUOIA_CFLAGS),) SEQUOIA_CFLAGS+=$(shell pkg-config --cflags-only-other pep_engine_sequoia_backend) -O2 endif ifeq ($(SEQUOIA_LDFLAGS),) - SEQUOIA_LDFLAGS+=$(shell pkg-config --libs-only-l pep_engine_sequoia_backend) + SEQUOIA_LDFLAGS+=$(shell pkg-config --libs-only-L pep_engine_sequoia_backend) endif ifeq ($(SEQUOIA_LIB),) - SEQUOIA_LIB=$(shell pkg-config --libs-only-L --libs-only-other pep_engine_sequoia_backend) + SEQUOIA_LIB=$(shell pkg-config --libs-only-l --libs-only-other pep_engine_sequoia_backend) endif ifeq ($(SEQUOIA_INC),) SEQUOIA_INC=$(shell pkg-config --cflags-only-I pep_engine_sequoia_backend)