summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorRob Boehne <datalogics-robb@users.noreply.github.com>2017-12-06 11:58:17 -0600
committerƁukasz Langa <lukasz@langa.pl>2017-12-06 09:58:17 -0800
commit9d25bd11ca121cfc76e5bf31c265e72956208598 (patch)
tree4267e2b76c14df22e0c8a666925b7158994c13c2 /configure
parentbd4ed77f73d37df325fc8f1e193b3ce6bc08094d (diff)
downloadcpython-git-9d25bd11ca121cfc76e5bf31c265e72956208598.tar.gz
Modify configure to link with the compiler driver under HP-UX when not using gcc. (#2519)
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure b/configure
index d02675742d..20d8095c25 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'