diff options
author | Trent Nelson <trent@trent.me> | 2012-10-17 08:47:31 (GMT) |
---|---|---|
committer | Trent Nelson <trent@trent.me> | 2012-10-17 08:47:31 (GMT) |
commit | 5595ab564cd0a01b1efdba5a03b2521e393fe7a4 (patch) | |
tree | a46882397ecc56520346c67fdf36ec2fa4d56cb6 /configure.ac | |
parent | ee528cccde02a5b0382e47a709f8a8311415dad1 (diff) | |
parent | 739fc541b197ed4dbb55be7a7d6925dc5f5ac5d8 (diff) | |
download | cpython-5595ab564cd0a01b1efdba5a03b2521e393fe7a4.zip cpython-5595ab564cd0a01b1efdba5a03b2521e393fe7a4.tar.gz cpython-5595ab564cd0a01b1efdba5a03b2521e393fe7a4.tar.bz2 |
Issue #15819: use standard autoconf preset output variables.
Reported by: Roumen Petrov
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 04413e9..4eb6c43 100644 --- a/configure.ac +++ b/configure.ac @@ -9,10 +9,8 @@ AC_PREREQ(2.65) AC_INIT(python, PYTHON_VERSION, http://bugs.python.org/) -BUILDDIR="`pwd`" -AC_SUBST(BUILDDIR) AC_SUBST(BASECPPFLAGS) -if test "$srcdir" != "." -a "$srcdir" != "$BUILDDIR"; then +if test "$abs_srcdir" != "$abs_builddir"; then # If we're building out-of-tree, we need to make sure the following # resources get picked up before their $srcdir counterparts. # Objects/ -> typeslots.inc |