diff options
author | Thiago Macieira <thiago.macieira@nokia.com> | 2009-09-01 17:16:11 (GMT) |
---|---|---|
committer | Thiago Macieira <thiago.macieira@nokia.com> | 2009-09-01 17:16:11 (GMT) |
commit | 491bf41b96fdc48aa166ae7702e00f3e6eb1825c (patch) | |
tree | ead3943e5331acc2437f6d1b070b084b0ac47a84 | |
parent | 586d73fd7d7503891193e84803d6fc55bda0baea (diff) | |
download | Qt-491bf41b96fdc48aa166ae7702e00f3e6eb1825c.zip Qt-491bf41b96fdc48aa166ae7702e00f3e6eb1825c.tar.gz Qt-491bf41b96fdc48aa166ae7702e00f3e6eb1825c.tar.bz2 |
Fix Solaris build: test isn't test.
configure: test: argument expected
Reviewed-by: TrustMe
-rwxr-xr-x | configure | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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." |