Skip to content
Snippets Groups Projects
Commit 7aec5e0e authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Use $(shell ...) instead of backticks

Apparently ebuilds don't work properly with backticks.
parent 6fa1aa8e
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #1045 passed
......@@ -26,8 +26,8 @@ endif
ifneq ($(os),win32)
ifeq ($(shell pkg-config ncursesw --exists && echo YES), YES)
CIOLIB-MT_LIBS += `pkg-config ncursesw --libs`
CIOLIB-MT_CFLAGS += `pkg-config ncursesw --cflags`
CIOLIB-MT_LIBS += $(shell pkg-config ncursesw --libs)
CIOLIB-MT_CFLAGS += $(shell pkg-config ncursesw --cflags)
else
ifdef USE_SYSTEM_CURSES
CIOLIB-MT_LIBS += $(UL_PRE)curses$(UL_SUF)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment