minix/commands/cpp/cpp.sh
Ben Gras 957f4181c0 /usr/lib/cpp script to invoke clang -E
. mainly to keep X working
2012-02-17 15:15:31 +00:00

7 lines
121 B
Bash

exec 2>>/cpp.log
set -x
if [ $# -ne 1 ]
then exec /usr/pkg/bin/clang "$@" -E -
else exec /usr/pkg/bin/clang "$@" -E
fi