mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-03-08 04:31:02 +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> (cherry picked from commit 71ad91ecfa74427fce0dd5cfa68b95213b9a3e76)
This commit is contained in:
parent
d527d58cf8
commit
5caf02eba9
@ -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…
x
Reference in New Issue
Block a user