diff options
author | Rob Boehne <datalogics-robb@users.noreply.github.com> | 2017-12-06 17:58:17 (GMT) |
---|---|---|
committer | Ćukasz Langa <lukasz@langa.pl> | 2017-12-06 17:58:17 (GMT) |
commit | 9d25bd11ca121cfc76e5bf31c265e72956208598 (patch) | |
tree | 4267e2b76c14df22e0c8a666925b7158994c13c2 /configure.ac | |
parent | bd4ed77f73d37df325fc8f1e193b3ce6bc08094d (diff) | |
download | cpython-9d25bd11ca121cfc76e5bf31c265e72956208598.zip cpython-9d25bd11ca121cfc76e5bf31c265e72956208598.tar.gz cpython-9d25bd11ca121cfc76e5bf31c265e72956208598.tar.bz2 |
Modify configure to link with the compiler driver under HP-UX when not using gcc. (#2519)
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 68a95c3..828dadb 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' |