mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
9 lines
230 B
Makefile
9 lines
230 B
Makefile
|
# This test ensures that a local variable in a $(foreach) is bound to
|
||
|
# the local value, not a global value.
|
||
|
i := dummy
|
||
|
|
||
|
all:
|
||
|
test "$(foreach i,foo bar,found:$(i))" = "found:foo found:bar"
|
||
|
test "$(i)" = "dummy"
|
||
|
@echo TEST-PASS
|