diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2001-12-02 13:02:32 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2001-12-02 13:02:32 (GMT) |
commit | 06f15bbcc42941e315aec086c4b238eb49cd25e3 (patch) | |
tree | 377ffe621182c1e48cf6c6683fd5abe7fee0bbc0 /configure.in | |
parent | b3cfc1d7eab506cbdd6c579b12e0f2f265f5f2c5 (diff) | |
download | cpython-06f15bbcc42941e315aec086c4b238eb49cd25e3.zip cpython-06f15bbcc42941e315aec086c4b238eb49cd25e3.tar.gz cpython-06f15bbcc42941e315aec086c4b238eb49cd25e3.tar.bz2 |
Compute thread headers through shell expansion in configure.
Fixes #485679.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 349042b..adfb2fd 100644 --- a/configure.in +++ b/configure.in @@ -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) |