mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-04 16:15:25 +00:00
11 lines
250 B
Makefile
11 lines
250 B
Makefile
unknown var = uval
|
|
|
|
all:
|
|
test "$(subst a,b,value)" = "vblue"
|
|
test "${subst a,b,va)lue}" = "vb)lue"
|
|
test "$(subst /,\,ab/c)" = "ab\c"
|
|
test "$( subst a,b,value)" = ""
|
|
test "$(Subst a,b,value)" = ""
|
|
test "$(unknown var)" = "uval"
|
|
@echo TEST-PASS
|