Browse Source

No need to export anything

Alois Mahdal 8 years ago
parent
commit
a02708cb8d
1 changed files with 5 additions and 5 deletions
  1. 5
    5
      src/make.skel

+ 5
- 5
src/make.skel View File

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