mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Compute thread headers through shell expansion in configure.
Fixes #485679.
This commit is contained in:
parent
b3cfc1d7ea
commit
06f15bbcc4
3 changed files with 18 additions and 3 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue