#!/bin/sh

# GCC wrapper for kernel compiles

if [ -x /usr/bin/gcc272 ]; then
  /usr/bin/gcc272 $*
else
  /usr/bin/gcc $*
fi

