mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-04 18:27:36 +00:00
11 lines
257 B
Bash
Executable File
11 lines
257 B
Bash
Executable File
cc=`cat cluecon.tmpl | sed 's/\\\\/\\\\\\\\/g' | awk '{printf "%s\\\\n", $0}' `
|
|
cc_s=`cat cluecon_small.tmpl | sed 's/\\\\/\\\\\\\\/g' | awk '{printf "%s\\\\n", $0}' `
|
|
|
|
cat <<EOF > src/include/cc.h
|
|
|
|
const char *cc = "$cc";
|
|
const char *cc_s = "$cc_s";
|
|
|
|
EOF
|
|
|