From fc1db301e7ea9d5bb0c44a13affbd116490be9dc Mon Sep 17 00:00:00 2001 From: =?utf8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Mon, 7 Oct 2002 06:22:21 +0000 Subject: [PATCH] Fix quoting for Solaris LDSHARED. --- configure | 4 ++-- configure.in | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/configure b/configure index 124284e48eb8..85e4b98c6a42 100755 --- a/configure +++ b/configure @@ -1,6 +1,6 @@ #! /bin/sh -# From configure.in Revision: 1.288.6.12 +# From configure.in Revision: 1.288.6.13 # Guess values for system-dependent variables and create Makefiles. # Generated automatically using autoconf version 2.13 @@ -3186,7 +3186,7 @@ then SunOS/5*) if test "$GCC" = "yes" then LDSHARED='$(CC) -shared' - else LDSHARED="$(CC) -G"; + else LDSHARED='$(CC) -G'; fi ;; hp*|HP*) LDSHARED="ld -b";; OSF*) LDSHARED="ld -shared -expect_unresolved \"*\"";; diff --git a/configure.in b/configure.in index 1e942481fc5c..e3c9d9b60bd5 100644 --- a/configure.in +++ b/configure.in @@ -800,7 +800,7 @@ then SunOS/5*) if test "$GCC" = "yes" then LDSHARED='$(CC) -shared' - else LDSHARED="$(CC) -G"; + else LDSHARED='$(CC) -G'; fi ;; hp*|HP*) LDSHARED="ld -b";; OSF*) LDSHARED="ld -shared -expect_unresolved \"*\"";; -- 2.47.3