From 491bf41b96fdc48aa166ae7702e00f3e6eb1825c Mon Sep 17 00:00:00 2001
From: Thiago Macieira <thiago.macieira@nokia.com>
Date: Tue, 1 Sep 2009 19:16:11 +0200
Subject: Fix Solaris build: test isn't test.

configure: test: argument expected

Reviewed-by: TrustMe
---
 configure | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/configure b/configure
index 6832ad3..c519ab1 100755
--- a/configure
+++ b/configure
@@ -3723,8 +3723,9 @@ elif [ "$Edition" = "OpenSource" ]; then
             echo "You have already accepted the terms of the $LicenseType license."
             acceptance=yes
         else
-            test -e "$relpath/LICENSE.GPL3" && \
+            if [ -e "$relpath/LICENSE.GPL3" ]; then
                 echo "Type '3' to view the GNU General Public License version 3."
+            fi
             echo "Type 'L' to view the Lesser GNU General Public License version 2.1."
             echo "Type 'yes' to accept this license offer."
             echo "Type 'no' to decline this license offer."
-- 
cgit v0.12