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
e8042e5e
Commit
e8042e5e
authored
May 06, 2015
by
doko@ubuntu.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Issue #24122, fix quoting for LIBPL
parent
d0150ad5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
configure
configure
+1
-1
configure.ac
configure.ac
+1
-1
No files found.
configure
View file @
e8042e5e
...
...
@@ -14030,7 +14030,7 @@ LDVERSION='$(VERSION)$(ABIFLAGS)'
$as_echo
"
$LDVERSION
"
>
&6
;
}
LIBPL
=
"
${
prefix
}
/lib/python
${
VERSION
}
/config-
${
LDVERSION
}
"
LIBPL
=
'$(prefix)'
"
/lib/python
${
VERSION
}
/config-
${
LDVERSION
}
"
# Check whether right shifting a negative integer extends the sign bit
...
...
configure.ac
View file @
e8042e5e
...
...
@@ -4115,7 +4115,7 @@ AC_MSG_RESULT($LDVERSION)
dnl define LIBPL after ABIFLAGS and LDVERSION is defined.
AC_SUBST(PY_ENABLE_SHARED)
LIBPL=
"${prefix}
/lib/python${VERSION}/config-${LDVERSION}"
LIBPL=
'$(prefix)'"
/lib/python${VERSION}/config-${LDVERSION}"
AC_SUBST(LIBPL)
# Check whether right shifting a negative integer extends the sign bit
...
...
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