mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 21:12:26 +01:00
8 lines
188 B
Bash
Executable file
8 lines
188 B
Bash
Executable file
#!/bin/sh
|
|
|
|
dst=$1
|
|
shift
|
|
|
|
out=`echo $* | sed 's!\([^ ]*\)!# Begin Source File\\\nSOURCE=\1\\\n# End Source File\\\n!g'`
|
|
sed -e "s!@sources@!$out!g" $dst > /tmp/$dst.$$
|
|
mv /tmp/$dst.$$ $dst
|