You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kamailio/test/gcc_version.sh

18 lines
236 B

#!/bin/sh
#
# wrapper arroung gcc, that intercepts --version and reports instead
# $GCC_VERSION
#
if [ -n "$GCC_VERSION" ]; then
for o in $@; do
if [ "$o" = "--version" ] ; then
echo $GCC_VERSION
exit 0
fi
done
fi
gcc $@