Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
9a537a6a
Commit
9a537a6a
authored
Oct 17, 2012
by
Trent Nelson
Browse files
Options
Browse Files
Download
Plain Diff
Issue #15819: use standard autoconf preset output variables.
Reported by: Roumen Petrov
parents
b21099a4
5595ab56
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
8 deletions
+4
-8
Makefile.pre.in
Makefile.pre.in
+2
-1
configure
configure
+1
-4
configure.ac
configure.ac
+1
-3
No files found.
Makefile.pre.in
View file @
9a537a6a
...
...
@@ -27,7 +27,8 @@ MODLIBS= _MODLIBS_
VERSION
=
@VERSION@
srcdir
=
@srcdir@
VPATH
=
@srcdir@
BUILDDIR
=
@BUILDDIR@
abs_srcdir
=
@abs_srcdir@
abs_builddir
=
@abs_builddir@
CC
=
@CC@
...
...
configure
View file @
9a537a6a
...
...
@@ -735,7 +735,6 @@ HGBRANCH
HGTAG
HGVERSION
BASECPPFLAGS
BUILDDIR
target_alias
host_alias
build_alias
...
...
@@ -2747,10 +2746,8 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
BUILDDIR
=
"
`
pwd
`
"
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
...
...
configure.ac
View file @
9a537a6a
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment