From: Rob Boehne Date: Wed, 6 Dec 2017 17:58:17 +0000 (-0600) Subject: Modify configure to link with the compiler driver under HP-UX when not using gcc... X-Git-Tag: v3.7.0a4~198 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9d25bd11ca121cfc76e5bf31c265e72956208598;p=thirdparty%2FPython%2Fcpython.git Modify configure to link with the compiler driver under HP-UX when not using gcc. (#2519) --- diff --git a/configure b/configure index d02675742d27..20d8095c252d 100755 --- a/configure +++ b/configure @@ -9124,7 +9124,8 @@ then LDSHARED='$(CC) -shared' LDCXXSHARED='$(CXX) -shared' else - LDSHARED='ld -b' + LDSHARED='$(CC) -b' + LDCXXSHARED='$(CXX) -shared' fi ;; Darwin/1.3*) LDSHARED='$(CC) -bundle' diff --git a/configure.ac b/configure.ac index 68a95c3be6af..828dadb56c4a 100644 --- a/configure.ac +++ b/configure.ac @@ -2442,7 +2442,8 @@ then LDSHARED='$(CC) -shared' LDCXXSHARED='$(CXX) -shared' else - LDSHARED='ld -b' + LDSHARED='$(CC) -b' + LDCXXSHARED='$(CXX) -b' fi ;; Darwin/1.3*) LDSHARED='$(CC) -bundle'