Compute thread headers through shell expansion in configure.

Fixes #485679.
This commit is contained in:
Martin v. Löwis 2001-12-02 13:02:32 +00:00
parent b3cfc1d7ea
commit 06f15bbcc4
3 changed files with 18 additions and 3 deletions

View file

@ -2018,6 +2018,13 @@ done
# AC_MSG_RESULT(already exists)
#fi
AC_SUBST(THREADHEADERS)
for h in `(cd $srcdir;echo Python/thread_*.h)`
do
THREADHEADERS="$THREADHEADERS \$(srcdir)/$h"
done
AC_SUBST(SRCDIRS)
SRCDIRS="Parser Grammar Objects Python Modules"
AC_MSG_CHECKING(for build directories)