mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-02-13 21:19:06 +01:00
package-pack: fix Ubuntu 18.04 compilation
Add \ to fix parsing with make 4.1. Signed-off-by: Rosen Penev <rosenp@gmail.com> Link: https://github.com/openwrt/openwrt/pull/21910 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
This commit is contained in:
parent
528c9259a7
commit
71ad91ecfa
1 changed files with 11 additions and 11 deletions
|
|
@ -231,17 +231,17 @@ endef
|
|||
# 3: ABI version
|
||||
# 4: list of provides
|
||||
define FormatProvides
|
||||
$(strip
|
||||
$(if $(call FormatABISuffix,$(1),$(3)),
|
||||
$(1) $(foreach provide,
|
||||
$(filter-out $(1),$(4)),
|
||||
$(call AddProvide,$(provide),$(2),$(3))
|
||||
),
|
||||
$(foreach provide,
|
||||
$(filter-out $(1),$(4)),
|
||||
$(call AddProvide,$(provide),$(2))
|
||||
)
|
||||
)
|
||||
$(strip \
|
||||
$(if $(call FormatABISuffix,$(1),$(3)), \
|
||||
$(1) $(foreach provide, \
|
||||
$(filter-out $(1),$(4)), \
|
||||
$(call AddProvide,$(provide),$(2),$(3)) \
|
||||
), \
|
||||
$(foreach provide, \
|
||||
$(filter-out $(1),$(4)), \
|
||||
$(call AddProvide,$(provide),$(2)) \
|
||||
) \
|
||||
) \
|
||||
)
|
||||
endef
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue