Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit aa5afe1

Browse files
committed
Fix quoting for Solaris LDSHARED. Will backport to 2.2.
1 parent bb20bb6 commit aa5afe1

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

configure

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#! /bin/sh
2-
# From configure.in Revision: 1.351 .
2+
# From configure.in Revision: 1.352 .
33
# Guess values for system-dependent variables and create Makefiles.
44
# Generated by GNU Autoconf 2.53.
55
#
@@ -8917,7 +8917,7 @@ then
89178917
SunOS/5*)
89188918
if test "$GCC" = "yes"
89198919
then LDSHARED='$(CC) -shared'
8920-
else LDSHARED="$(CC) -G";
8920+
else LDSHARED='$(CC) -G';
89218921
fi ;;
89228922
hp*|HP*) LDSHARED="ld -b";;
89238923
OSF*) LDSHARED="ld -shared -expect_unresolved \"*\"";;

configure.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -928,7 +928,7 @@ then
928928
SunOS/5*)
929929
if test "$GCC" = "yes"
930930
then LDSHARED='$(CC) -shared'
931-
else LDSHARED="$(CC) -G";
931+
else LDSHARED='$(CC) -G';
932932
fi ;;
933933
hp*|HP*) LDSHARED="ld -b";;
934934
OSF*) LDSHARED="ld -shared -expect_unresolved \"*\"";;

0 commit comments

Comments
 (0)