diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2002-03-08 21:43:51 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2002-03-08 21:43:51 (GMT) |
commit | 90d1006e92a42abca78a0053d70d98e2053fd897 (patch) | |
tree | 35e4e92b011cdde2242bfcbd9c38b4d9c15b90e6 /configure.in | |
parent | 547a3167be9a49ce1199be00544011707d367d6f (diff) | |
download | cpython-90d1006e92a42abca78a0053d70d98e2053fd897.zip cpython-90d1006e92a42abca78a0053d70d98e2053fd897.tar.gz cpython-90d1006e92a42abca78a0053d70d98e2053fd897.tar.bz2 |
Add fix for AIX as reported by srubben in SF bug #477487.
Untested, of course.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index da2ab8d..56e3fae 100644 --- a/configure.in +++ b/configure.in @@ -292,7 +292,7 @@ then fi case $ac_sys_system in AIX*) - LINKCC="\$(srcdir)/Modules/makexp_aix Modules/python.exp \"\" \$(LIBRARY); $(LINKCC)";; + LINKCC="\$(srcdir)/Modules/makexp_aix Modules/python.exp \"\" \$(LIBRARY); $LINKCC";; dgux*) LINKCC="LD_RUN_PATH=$libdir $(LINKCC)";; Monterey64*) |