configure.ac: Check for grep with AC_PROG_GREP
authorMatt Turner <mattst88@gmail.com>
Wed, 9 May 2018 23:32:12 +0000 (16:32 -0700)
committerMatt Turner <mattst88@gmail.com>
Wed, 9 May 2018 23:38:47 +0000 (16:38 -0700)
commit00979402230e659fff57dec612f60987665157fa
tree08e67c04d48f91e3ec5ac9da1b92a7d5d3e40474
parent0ab266dc1ba10ec13601e3bdb5b949e610eca5de
configure.ac: Check for grep with AC_PROG_GREP

Perhaps with a new version of autoconf, I began seeing:

| checking the name lister (/usr/bin/nm -B) interface... ./configure: line 6973: External.*some_variable: command not found
| BSD nm

This is because AC_PROG_NM expands to

...
if $GREP 'External.*some_variable' conftest.out > /dev/null; then
    lt_cv_nm_interface="MS dumpbin"
fi
...

I'm not sure if it's a bug in AC_PROG_NM that it doesn't call
AC_PROG_GREP, but it's easy enough for us to do it.
configure.ac