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
|
|
@ -8048,12 +8048,7 @@ for subdir in $SUBDIRS; do
|
|||
done
|
||||
else
|
||||
dnl assume that everything compiles for utils &c
|
||||
dnl any that shouldn't be built can be added to
|
||||
dnl DISABLED_UTILS, DISABLED_DEMOS
|
||||
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
|
||||
dnl we build wxBase only
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue