blob: a29871e52470b13aee3674a0ae9daedbd2715e16 [file] [log] [blame]
Simon Kelley3d8df262005-08-29 12:19:27 +01001#!/bin/sh
2
Simon Kelley1f15b812009-10-13 17:49:32 +01003search=$1
4shift
5
Simon Kelley9bbc8872012-02-09 21:33:09 +00006if grep "^\#[[:space:]]*define[[:space:]]*$search" config.h >/dev/null 2>&1 || \
7 grep $search >/dev/null 2>&1; then
Simon Kelley3d8df262005-08-29 12:19:27 +01008 exec $*
9fi
10
11