#!/bin/sh
# This script strips out the Libtool output from compiling and recording timestamps
libtool=$1
compiler=$4
shift
if $libtool $* | egrep -v "($compiler|\.lo|mkdir)"; then
  exit 1
else
  exit 0
fi
