瀏覽代碼

Use .skel suffix instead of .in

Alois Mahdal 9 年之前
父節點
當前提交
b1ae29510a
共有 3 個文件被更改,包括 3 次插入3 次删除
  1. 0
    0
      bin/eeini.skel
  2. 0
    0
      bin/eewww.skel
  3. 3
    3
      setup/mk.sh

bin/eeini.in → bin/eeini.skel 查看文件


bin/eewww.in → bin/eewww.skel 查看文件


+ 3
- 3
setup/mk.sh 查看文件

@@ -35,7 +35,7 @@ die() {
35 35
 build1() {
36 36
     local srcpath dstpath
37 37
     srcpath=$1
38
-    dstpath=${srcpath%.in}
38
+    dstpath=${srcpath%.skel}
39 39
     perl -pe "
40 40
         s|__EECC_INI_PATH__|$EECC_INI_PATH_GLOBAL:\\\$HOME/$EECC_INI_PATH_USER|;
41 41
         s|__VERSION__|$VERSION|;
@@ -45,7 +45,7 @@ build1() {
45 45
 
46 46
 build() {
47 47
     local srcpath
48
-    find -type f -name '*.in' \
48
+    find -type f -name '*.skel' \
49 49
      | while read srcpath;
50 50
        do
51 51
            build1 "$srcpath"
@@ -86,7 +86,7 @@ install() {
86 86
 
87 87
 run_test() {
88 88
     pushd test
89
-    find -maxdepth 1 -type f \! -name '*.in' | while read test;
89
+    find -maxdepth 1 -type f \! -name '*.skel' | while read test;
90 90
     do
91 91
         chmod 0755 $test
92 92
         $test || exit $?