[jbossnative-commits] JBoss Native SVN: r1368 - trunk/build/unix.

jbossnative-commits at lists.jboss.org jbossnative-commits at lists.jboss.org
Tue Feb 5 16:30:30 EST 2008


Author: jfrederic.clere at jboss.com
Date: 2008-02-05 16:30:29 -0500 (Tue, 05 Feb 2008)
New Revision: 1368

Modified:
   trunk/build/unix/build.sh
Log:
typos.


Modified: trunk/build/unix/build.sh
===================================================================
--- trunk/build/unix/build.sh	2008-02-05 17:06:21 UTC (rev 1367)
+++ trunk/build/unix/build.sh	2008-02-05 21:30:29 UTC (rev 1368)
@@ -188,7 +188,7 @@
       apr:*)
         apr_version=`echo "${arg}" | ${awk} -F':' '{print $3}'`
         apr_type=`echo "${arg}" | ${awk} -F':' '{print $2}'`
-        if [ "$apr_type" == "v" ]; then
+        if [ "$apr_type" = "v" ]; then
           has_apr=true
         fi
         export apr_version
@@ -196,7 +196,7 @@
       apu:*)
         apu_version=`echo "${arg}" | ${awk} -F':' '{print $3}'`
         apu_type=`echo "${arg}" | ${awk} -F':' '{print $2}'`
-        if [ "$apu_type" == "v" ]; then
+        if [ "$apu_type" = "v" ]; then
           has_apu=true
         fi
         export apu_version
@@ -946,9 +946,9 @@
 fi
 # Note: type of the download (r: rhel, v: internet, t: tag in svn).
 if $has_openssl; then
-  if [ "${ssl_type}" == "v" ]; then
+  if [ "${ssl_type}" = "v" ]; then
     ckeckdownload openssl-${ssl_version} $SSLURL "NONE"
-  elif [ "${ssl_type}" == "r" ]; then
+  elif [ "${ssl_type}" = "r" ]; then
     if [ "x${ssl_version}" = "x" ]; then
       tag=trunk
     else




More information about the jbossnative-commits mailing list