mirror of https://github.com/python/cpython.git
Fix LINKCC for AIX
This commit is contained in:
parent
92c90329d1
commit
0393e18b18
|
@ -1,6 +1,6 @@
|
||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
|
|
||||||
# From configure.in Revision: 1.59
|
# From configure.in Revision: 1.60
|
||||||
|
|
||||||
# Guess values for system-dependent variables and create Makefiles.
|
# Guess values for system-dependent variables and create Makefiles.
|
||||||
# Generated automatically using autoconf version 2.12
|
# Generated automatically using autoconf version 2.12
|
||||||
|
@ -818,7 +818,7 @@ if test -z "$LINKCC"
|
||||||
then
|
then
|
||||||
case $ac_sys_system in
|
case $ac_sys_system in
|
||||||
AIX*)
|
AIX*)
|
||||||
LINKCC="makexp_aix python.exp \"\" \$(MYLIBS) \$(ADDOBJS); \$(CC)";;
|
LINKCC="makexp_aix python.exp \"\" \$(LIBRARY); \$(CC)";;
|
||||||
*) LINKCC="\$(CC)";;
|
*) LINKCC="\$(CC)";;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -90,7 +90,7 @@ if test -z "$LINKCC"
|
||||||
then
|
then
|
||||||
case $ac_sys_system in
|
case $ac_sys_system in
|
||||||
AIX*)
|
AIX*)
|
||||||
LINKCC="makexp_aix python.exp \"\" \$(MYLIBS) \$(ADDOBJS); \$(CC)";;
|
LINKCC="makexp_aix python.exp \"\" \$(LIBRARY); \$(CC)";;
|
||||||
*) LINKCC="\$(CC)";;
|
*) LINKCC="\$(CC)";;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue