Gitweb links:

...log 
http://git.netsurf-browser.org/netsurf.git/shortlog/71d3e7b4ca25f08eb97e93edf4740282d8475d25
...commit 
http://git.netsurf-browser.org/netsurf.git/commit/71d3e7b4ca25f08eb97e93edf4740282d8475d25
...tree 
http://git.netsurf-browser.org/netsurf.git/tree/71d3e7b4ca25f08eb97e93edf4740282d8475d25

The branch, master has been updated
       via  71d3e7b4ca25f08eb97e93edf4740282d8475d25 (commit)
      from  a2388a91cf9ceb7efb203a7b4d6d250395cdb744 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commitdiff 
http://git.netsurf-browser.org/netsurf.git/commit/?id=71d3e7b4ca25f08eb97e93edf4740282d8475d25
commit 71d3e7b4ca25f08eb97e93edf4740282d8475d25
Author: Daniel Silverstone <[email protected]>
Commit: Daniel Silverstone <[email protected]>

    Docs: Fix for zsh in env.sh

diff --git a/Docs/env.sh b/Docs/env.sh
index a1253f0..9cfc956 100644
--- a/Docs/env.sh
+++ b/Docs/env.sh
@@ -28,13 +28,13 @@ if [ "x${HOST}" = "x" ]; then
     fi
 else
     HOST_CC_LIST="${HOST}-cc ${HOST}-gcc 
/opt/netsurf/${HOST}/cross/bin/${HOST}-cc 
/opt/netsurf/${HOST}/cross/bin/${HOST}-gcc"
-    for HOST_CC_V in ${HOST_CC_LIST};do
+    for HOST_CC_V in $(echo ${HOST_CC_LIST});do
        HOST_CC=$(/bin/which ${HOST_CC_V})
        if [ "x${HOST_CC}" != "x" ];then
            break
        fi
     done
-    if [ "x${HOST_CC}" == "x" ];then
+    if [ "x${HOST_CC}" = "x" ];then
        echo "Unable to execute host compiler for HOST=${HOST}. is it set 
correctly?"
        return 1
     fi


-----------------------------------------------------------------------

Summary of changes:
 Docs/env.sh |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Docs/env.sh b/Docs/env.sh
index a1253f0..9cfc956 100644
--- a/Docs/env.sh
+++ b/Docs/env.sh
@@ -28,13 +28,13 @@ if [ "x${HOST}" = "x" ]; then
     fi
 else
     HOST_CC_LIST="${HOST}-cc ${HOST}-gcc 
/opt/netsurf/${HOST}/cross/bin/${HOST}-cc 
/opt/netsurf/${HOST}/cross/bin/${HOST}-gcc"
-    for HOST_CC_V in ${HOST_CC_LIST};do
+    for HOST_CC_V in $(echo ${HOST_CC_LIST});do
        HOST_CC=$(/bin/which ${HOST_CC_V})
        if [ "x${HOST_CC}" != "x" ];then
            break
        fi
     done
-    if [ "x${HOST_CC}" == "x" ];then
+    if [ "x${HOST_CC}" = "x" ];then
        echo "Unable to execute host compiler for HOST=${HOST}. is it set 
correctly?"
        return 1
     fi


-- 
NetSurf Browser

_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org

Reply via email to