mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
9 lines
143 B
Text
9 lines
143 B
Text
|
#!/bin/sh
|
||
|
|
||
|
dst=$1
|
||
|
shift
|
||
|
|
||
|
out=`echo $* | sed 's/-I\([^ ]*\)/\/I "\1"/g'`
|
||
|
sed -e "s!@includes@!$out!g" $dst > /tmp/$dst.$$
|
||
|
mv /tmp/$dst.$$ $dst
|