diff options
author | lenz@mysql.com <> | 2004-10-05 14:42:15 +0200 |
---|---|---|
committer | lenz@mysql.com <> | 2004-10-05 14:42:15 +0200 |
commit | 5db0d20b887ed5c4dea153879639e20c66fcdd9e (patch) | |
tree | d114804ab619784b876ebf525ba119b659eabc80 /scripts | |
parent | e7500f435ff93761bb2895e01079ec73e3bf3b9e (diff) | |
download | mariadb-git-5db0d20b887ed5c4dea153879639e20c66fcdd9e.tar.gz |
- Rename the *.cnf files to *.ini for the Windows source distribution
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/make_win_src_distribution.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/scripts/make_win_src_distribution.sh b/scripts/make_win_src_distribution.sh index 19a5fb7276b..8385a7f9bb0 100644 --- a/scripts/make_win_src_distribution.sh +++ b/scripts/make_win_src_distribution.sh @@ -294,7 +294,13 @@ done # support files # mkdir $BASE/support-files -cp support-files/*.cnf $BASE/support-files + +# Rename the cnf files to <file>.ini +for i in support-files/*.cnf +do + i=`echo $i | sed 's/.cnf$//g'` + cp $i.cnf $BASE/$i.ini +done # # Raw dirs from source tree |