1
0
mirror of https://github.com/pikvm/pi-builder.git synced 2025-04-19 06:22:16 +03:00

fixed contains function

This commit is contained in:
Maxim Devaev 2023-11-17 01:34:33 +02:00
parent 5968eacdd1
commit 7b7b92ddd5

2
lib.mk
View File

@ -54,7 +54,7 @@ endef
define contains
$(if $(filter $(1),$(2)),$(3),$(4))
$(if $(findstring $(1),$(2)),$(3),$(4))
endef