mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 22:23:16 +00:00
5e4e634625
If `select_from_ports` is evaluated lazily, we might miss a port during the dependency check. A way to prevent this is to use the `:=` operator. Fixes genodelabs/genode#4618
7 lines
154 B
Makefile
7 lines
154 B
Makefile
PCSCLITE_DIR := $(call select_from_ports,pcsc-lite)
|
|
ifeq ($(CONTRIB_DIR),)
|
|
REP_INC_DIR += include/PCSC
|
|
else
|
|
INC_DIR += $(PCSCLITE_DIR)/include/PCSC
|
|
endif
|