Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 25f9303

Browse files
committed
Moved inclusion of PURIFY in LINKCC to configure
1 parent 34b3597 commit 25f9303

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

Modules/Makefile.pre.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ INSTALL_SHARED= ${INSTALL} -m 555
7070

7171
# === Variables that are customizable by hand or by inclusion in Setup ===
7272

73-
LINKCC= $(PURIFY) @LINKCC@
73+
LINKCC= @LINKCC@
7474
INCLDIR= $(srcdir)/../Include
7575
CONFIGINCLDIR= ..
7676
CFLAGS= $(OPT) -I$(INCLDIR) -I$(CONFIGINCLDIR) $(DEFS)

configure

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22

3-
# From configure.in Revision: 1.60
3+
# From configure.in Revision: 1.61
44

55
# Guess values for system-dependent variables and create Makefiles.
66
# Generated automatically using autoconf version 2.12
@@ -818,8 +818,8 @@ if test -z "$LINKCC"
818818
then
819819
case $ac_sys_system in
820820
AIX*)
821-
LINKCC="makexp_aix python.exp \"\" \$(LIBRARY); \$(CC)";;
822-
*) LINKCC="\$(CC)";;
821+
LINKCC="makexp_aix python.exp \"\" \$(LIBRARY); \$(PURIFY) \$(CC)";;
822+
*) LINKCC="\$(PURIFY) \$(CC)";;
823823
esac
824824
fi
825825
echo "$ac_t""$LINKCC" 1>&6

configure.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ if test -z "$LINKCC"
9090
then
9191
case $ac_sys_system in
9292
AIX*)
93-
LINKCC="makexp_aix python.exp \"\" \$(LIBRARY); \$(CC)";;
94-
*) LINKCC="\$(CC)";;
93+
LINKCC="makexp_aix python.exp \"\" \$(LIBRARY); \$(PURIFY) \$(CC)";;
94+
*) LINKCC="\$(PURIFY) \$(CC)";;
9595
esac
9696
fi
9797
AC_MSG_RESULT($LINKCC)

0 commit comments

Comments
 (0)