mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 14:13:09 +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
13 lines
316 B
Makefile
13 lines
316 B
Makefile
LIB_OPENSSL_DIR = $(call select_from_repositories,src/lib/openssl)
|
|
|
|
ARCH = $(filter 32bit 64bit,$(SPECS))
|
|
|
|
OPENSSL_DIR := $(call select_from_ports,openssl)
|
|
|
|
INC_DIR += $(OPENSSL_DIR)/include
|
|
INC_DIR += $(LIB_OPENSSL_DIR)/spec/$(ARCH)
|
|
|
|
LIBS += libc
|
|
|
|
include $(call select_from_repositories,lib/import/import-libc.mk)
|