Skip to content

Commit 4e732dc

Browse files
committed
Expand LINKCC in configure.in. Suggested in bug report #529713.
1 parent 1268678 commit 4e732dc

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

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.296
3+
# From configure.in Revision: 1.297
44

55
# Guess values for system-dependent variables and create Makefiles.
66
# Generated automatically using autoconf version 2.13
@@ -1430,9 +1430,9 @@ then
14301430
AIX*)
14311431
LINKCC="\$(srcdir)/Modules/makexp_aix Modules/python.exp \"\" \$(LIBRARY); $LINKCC";;
14321432
dgux*)
1433-
LINKCC="LD_RUN_PATH=$libdir $(LINKCC)";;
1433+
LINKCC="LD_RUN_PATH=$libdir $LINKCC";;
14341434
Monterey64*)
1435-
LINKCC="$(LINKCC) -L/usr/lib/ia64l64";;
1435+
LINKCC="$LINKCC -L/usr/lib/ia64l64";;
14361436
esac
14371437
fi
14381438
echo "$ac_t""$LINKCC" 1>&6

configure.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -294,9 +294,9 @@ then
294294
AIX*)
295295
LINKCC="\$(srcdir)/Modules/makexp_aix Modules/python.exp \"\" \$(LIBRARY); $LINKCC";;
296296
dgux*)
297-
LINKCC="LD_RUN_PATH=$libdir $(LINKCC)";;
297+
LINKCC="LD_RUN_PATH=$libdir $LINKCC";;
298298
Monterey64*)
299-
LINKCC="$(LINKCC) -L/usr/lib/ia64l64";;
299+
LINKCC="$LINKCC -L/usr/lib/ia64l64";;
300300
esac
301301
fi
302302
AC_MSG_RESULT($LINKCC)

0 commit comments

Comments
 (0)