Selaa lähdekoodia

Sort globals alphabetically

Alois Mahdal 8 vuotta sitten
vanhempi
commit
46cdfa6dea
1 muutettua tiedostoa jossa 11 lisäystä ja 11 poistoa
  1. 11
    11
      src/make.skel

+ 11
- 11
src/make.skel Näytä tiedosto

@@ -8,9 +8,9 @@ die() {
8 8
 
9 9
 
10 10
 #
11
-# This MKit version
11
+# Debug mode (true|false)
12 12
 #
13
-MKIT_VERSION=__MKIT_PROJ_VERSION__
13
+MKIT_DEBUG=${MKIT_DEBUG:-false}
14 14
 
15 15
 #
16 16
 # Path to MKit dir (where 'include' is)
@@ -18,24 +18,24 @@ MKIT_VERSION=__MKIT_PROJ_VERSION__
18 18
 MKIT_DIR=${MKIT_DIR:-$(dirname "$0")}
19 19
 
20 20
 #
21
-# Path to MKit local config and temp
21
+# Dry mode (true|false)
22 22
 #
23
-# Typically hidden in project root, here MKit can
24
-# save its temporary lists.
23
+# Set to true to not install anything. Implies MKIT_DEBUG.
25 24
 #
26
-MKIT_LOCAL=${MKIT_LOCAL:-.mkit}
25
+MKIT_DRY=${MKIT_DRY:-false}
27 26
 
28 27
 #
29
-# Dry mode (true|false)
28
+# Path to MKit local config and temp
30 29
 #
31
-# Set to true to not install anything. Implies MKIT_DEBUG.
30
+# Typically hidden in project root, here MKit can
31
+# save its temporary lists.
32 32
 #
33
-MKIT_DRY=${MKIT_DRY:-false}
33
+MKIT_LOCAL=${MKIT_LOCAL:-.mkit}
34 34
 
35 35
 #
36
-# Debug mode (true|false)
36
+# This MKit version
37 37
 #
38
-MKIT_DEBUG=${MKIT_DEBUG:-false}
38
+MKIT_VERSION=__MKIT_PROJ_VERSION__
39 39
 
40 40
 
41 41
 . "$MKIT_DIR/include/mkit.sh" || die "failed to init; check if MKIT_DIR is set properly: $MKIT_DIR"