]> git.ipfire.org Git - people/ms/dnsmasq.git/blob - bld/pkg-wrapper
Accumulated 2.60 changes going into git
[people/ms/dnsmasq.git] / bld / pkg-wrapper
1 #!/bin/sh
2
3 search=$1
4 shift
5
6 if grep "^\#[[:space:]]*define[[:space:]]*$search" config.h 2>&1 >/dev/null || \
7 grep $search 2>&1 >/dev/null ; then
8 exec $*
9 fi
10
11