mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-21 23:58:51 -05:00
Use $(PKG_CONFIG) to call pkgconf rather than invoking directly in finding jemalloc
Signed-off-by: Maytham Alsudany <maytha8thedev@gail.com>
This commit is contained in:
parent
bd55c900ac
commit
d2e5e96559
@ -268,8 +268,8 @@ endif
|
||||
ifeq ($(MALLOC),jemalloc)
|
||||
FINAL_CFLAGS+= -DUSE_JEMALLOC
|
||||
ifeq ($(USE_SYSTEM_JEMALLOC),yes)
|
||||
FINAL_CFLAGS+= -DUSE_SYSTEM_JEMALLOC $(shell pkgconf --cflags jemalloc)
|
||||
FINAL_LIBS := $(shell pkgconf --libs jemalloc) $(FINAL_LIBS)
|
||||
FINAL_CFLAGS+= -DUSE_SYSTEM_JEMALLOC $(shell $(PKG_CONFIG) --cflags jemalloc)
|
||||
FINAL_LIBS := $(shell $(PKG_CONFIG) --libs jemalloc) $(FINAL_LIBS)
|
||||
else
|
||||
DEPENDENCY_TARGETS+= jemalloc
|
||||
FINAL_CFLAGS+= -I../deps/jemalloc/include
|
||||
|
Loading…
Reference in New Issue
Block a user