mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
- Rename the *.cnf files to *.ini for the Windows source distribution
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user