diff options
author | Guido van Rossum <guido@python.org> | 2000-02-03 13:50:24 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-02-03 13:50:24 (GMT) |
commit | ff484183de25b477db56e7fe04f9b60f6558787a (patch) | |
tree | 7b1e29ea09db56e5409fe002015673c226a33584 /configure | |
parent | 9c6ba9b598ec1294164e16ca27bd4a344ba15b08 (diff) | |
download | cpython-ff484183de25b477db56e7fe04f9b60f6558787a.zip cpython-ff484183de25b477db56e7fe04f9b60f6558787a.tar.gz cpython-ff484183de25b477db56e7fe04f9b60f6558787a.tar.bz2 |
According to Harri Pasanen, the Solaris+gcc test for LINKFORSHARED
needed an adaptation for the latest gcc -- we need to grep stderr as
well as stdout for the magic string BFD. (Does anybody know what BFD
means?)
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ #! /bin/sh -# From configure.in Revision: 1.114 +# From configure.in Revision: 1.115 # Guess values for system-dependent variables and create Makefiles. # Generated automatically using autoconf version 2.13 @@ -2355,7 +2355,7 @@ then fi;; SunOS/5*) case $CC in *gcc*) - if $CC -Xlinker -V 2>/dev/null | grep BFD >/dev/null + if $CC -Xlinker -V 2>&1 | grep BFD >/dev/null then LINKFORSHARED="-Xlinker --export-dynamic" fi;; |