blob: 498a372281ae539c422d20e2f9dcd86d84b66404 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
if UNDEFINED
endif
config SINGLE_DEF
config MULTI_DEF
# Throw in some line continuations too to make sure it doesn't mess up the line
# numbers
if y && \
y
if y && \
y && \
y
config MULTI_DEF
endif
endif
config EXPANDED_FROM_ENV
string
option env="EXPANDED_FROM_ENV"
config _INCLUDED
string
default "_included"
# Expands to "tests/Klocation_included"
source "$EXPANDED_FROM_ENV/Klocation$_INCLUDED"
|