Stop using $EGREP in configure.ac unnecessarily
We don't have DISABLED_UTILS or DISABLED_DEMOS variables, so it's useless to exclude them from the makefiles list -- just stop doing it. This fixes a problem with using EGREP without preceding AC_PROG_EGREP with autoconf 2.72, as EGREP is not defined any longer with this version. See #24168.
This commit is contained in:
parent
ce1d317768
commit
00dff6e3bc
2 changed files with 2 additions and 10 deletions
5
configure
vendored
5
configure
vendored
|
|
@ -42983,10 +42983,7 @@ for subdir in $SUBDIRS; do
|
|||
makefiles="samples/$subtree/Makefile.in $makefiles"
|
||||
done
|
||||
else
|
||||
disabled_var=DISABLED_`echo $subdir | tr '[a-z]' '[A-Z]'`
|
||||
eval "disabled=\$$disabled_var"
|
||||
disabled=/`echo X $disabled | sed 's@ @/|/@g'`/
|
||||
makefiles=`(cd $srcdir ; find $subdir -name Makefile.in) | $EGREP -v "$disabled"`
|
||||
makefiles=`(cd $srcdir ; find $subdir -name Makefile.in)`
|
||||
fi
|
||||
else
|
||||
if test ${subdir} = "samples"; then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue