mirror of
https://github.com/MariaDB/server.git
synced 2025-09-02 09:41:40 +03:00
9 lines
143 B
Bash
Executable File
9 lines
143 B
Bash
Executable File
#!/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
|