Home | History | Annotate | Download | only in bld
      1 #!/bin/sh
      2 
      3 search=$1
      4 shift
      5 
      6 if grep "^\#.*define.*$search" config.h 2>&1 >/dev/null || \
      7    grep $search 2>&1 >/dev/null ; then
      8   exec $*
      9 fi
     10 
     11 
     12