Browse Source

Use own global variable name

Alois Mahdal 9 years ago
parent
commit
2baa4b1afa
11 changed files with 12 additions and 12 deletions
  1. 1
    1
      bin/eedmenu.in
  2. 1
    1
      bin/eeget.in
  3. 1
    1
      bin/eeiam.in
  4. 1
    1
      bin/eeini.in
  5. 1
    1
      bin/eeln.in
  6. 1
    1
      bin/eepush.in
  7. 1
    1
      bin/eerevert.in
  8. 1
    1
      bin/eewatch.in
  9. 1
    1
      bin/eewww.in
  10. 2
    2
      config.mk
  11. 1
    1
      setup/mk.sh

+ 1
- 1
bin/eedmenu.in View File

@@ -4,7 +4,7 @@
4 4
 ffoo import core
5 5
 ffoo import ini
6 6
 
7
-FFOO_INI_PATH="__FFOO_INI_PATH__"
7
+FFOO_INI_PATH="__EECC_INI_PATH__"
8 8
 
9 9
 usage() {
10 10
     usage_is "[-l|--lines NUM] [--split CHAR] ARGS..."

+ 1
- 1
bin/eeget.in View File

@@ -1,7 +1,7 @@
1 1
 #!/bin/bash
2 2
 
3 3
 . <(ffoom init)
4
-FFOO_INI_PATH="__FFOO_INI_PATH__"
4
+FFOO_INI_PATH="__EECC_INI_PATH__"
5 5
 
6 6
 ffoo import core
7 7
 ffoo import ini

+ 1
- 1
bin/eeiam.in View File

@@ -1,7 +1,7 @@
1 1
 #!/bin/bash
2 2
 
3 3
 . <(ffoom init)
4
-FFOO_INI_PATH="__FFOO_INI_PATH__"
4
+FFOO_INI_PATH="__EECC_INI_PATH__"
5 5
 
6 6
 ffoo import core
7 7
 ffoo import ini

+ 1
- 1
bin/eeini.in View File

@@ -1,7 +1,7 @@
1 1
 #!/bin/bash
2 2
 
3 3
 . <(ffoom init)
4
-FFOO_INI_PATH="__FFOO_INI_PATH__:$FFOO_INI_PATH"
4
+FFOO_INI_PATH="__EECC_INI_PATH__:$EECC_INI_PATH"
5 5
 
6 6
 ffoo import ini
7 7
 

+ 1
- 1
bin/eeln.in View File

@@ -1,7 +1,7 @@
1 1
 #!/bin/bash
2 2
 
3 3
 . <(ffoom init)
4
-FFOO_INI_PATH="__FFOO_INI_PATH__"
4
+FFOO_INI_PATH="__EECC_INI_PATH__"
5 5
 
6 6
 ffoo import core
7 7
 ffoo import ini

+ 1
- 1
bin/eepush.in View File

@@ -1,7 +1,7 @@
1 1
 #!/bin/bash
2 2
 
3 3
 . <(ffoom init)
4
-FFOO_INI_PATH="__FFOO_INI_PATH__"
4
+FFOO_INI_PATH="__EECC_INI_PATH__"
5 5
 
6 6
 ffoo import core
7 7
 ffoo import ini

+ 1
- 1
bin/eerevert.in View File

@@ -1,7 +1,7 @@
1 1
 #!/bin/bash
2 2
 
3 3
 . <(ffoom init)
4
-FFOO_INI_PATH="__FFOO_INI_PATH__"
4
+FFOO_INI_PATH="__EECC_INI_PATH__"
5 5
 
6 6
 ffoo import core
7 7
 ffoo import ini

+ 1
- 1
bin/eewatch.in View File

@@ -1,7 +1,7 @@
1 1
 #!/bin/bash
2 2
 
3 3
 . <(ffoom init)
4
-FFOO_INI_PATH="__FFOO_INI_PATH__"
4
+FFOO_INI_PATH="__EECC_INI_PATH__"
5 5
 
6 6
 ffoo import core
7 7
 ffoo import recon

+ 1
- 1
bin/eewww.in View File

@@ -1,7 +1,7 @@
1 1
 #!/bin/bash
2 2
 
3 3
 . <(ffoom init)
4
-FFOO_INI_PATH="__FFOO_INI_PATH__"
4
+FFOO_INI_PATH="__EECC_INI_PATH__"
5 5
 
6 6
 ffoo import ini
7 7
 ffoo import www

+ 2
- 2
config.mk View File

@@ -2,5 +2,5 @@
2 2
 VERSION = 0.0.0
3 3
 PREFIX = /usr/local
4 4
 MANPREFIX = ${PREFIX}/share/man
5
-FFOO_INI_PATH_GLOBAL = /etc/eecc
6
-FFOO_INI_PATH_USER = .eecc
5
+EECC_INI_PATH_GLOBAL = /etc/eecc
6
+EECC_INI_PATH_USER = .eecc

+ 1
- 1
setup/mk.sh View File

@@ -37,7 +37,7 @@ build1() {
37 37
     srcpath=$1
38 38
     dstpath=${srcpath%.in}
39 39
     perl -pe "
40
-        s|__FFOO_INI_PATH__|$FFOO_INI_PATH_GLOBAL:\\\$HOME/$FFOO_INI_PATH_USER|;
40
+        s|__EECC_INI_PATH__|$EECC_INI_PATH_GLOBAL:\\\$HOME/$EECC_INI_PATH_USER|;
41 41
         s|__VERSION__|$VERSION|;
42 42
     " < $srcpath > $dstpath
43 43
     echo $dstpath >> built.list