57718be8fa
minus the vendor Makefiles Provide directions for how to bootstrap the vendor sources in FREEBSD-upgrade MFC after 2 weeks Discussed with: rpaulo Sponsored by: EMC / Isilon Storage Division
21 lines
270 B
Bash
Executable File
21 lines
270 B
Bash
Executable File
#!/bin/sh
|
|
|
|
prog=$(basename $0)
|
|
usage()
|
|
{
|
|
echo "usage: ${prog} symbol" 1>&2
|
|
exit 1
|
|
}
|
|
|
|
if [ $# -ne 1 ]; then
|
|
usage
|
|
fi
|
|
|
|
sed 's/\(["\]\)/\\\1/g' | \
|
|
${AWK:-awk} -v sym=$1 '
|
|
BEGIN { printf "const char " sym "[] = \""; }
|
|
{ printf $0 "\\n"; }
|
|
END { print "\";"; }'
|
|
|
|
exit 0
|