Gitweb links:

...log 
http://git.netsurf-browser.org/buildsystem.git/shortlog/2359506a7333686d0e3703070d2621b3cb06ed30
...commit 
http://git.netsurf-browser.org/buildsystem.git/commit/2359506a7333686d0e3703070d2621b3cb06ed30
...tree 
http://git.netsurf-browser.org/buildsystem.git/tree/2359506a7333686d0e3703070d2621b3cb06ed30

The branch, master has been updated
       via  2359506a7333686d0e3703070d2621b3cb06ed30 (commit)
      from  d5be8343bd556d1a0c722cae9bb5b575f0f8c84e (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/buildsystem.git/commitdiff/2359506a7333686d0e3703070d2621b3cb06ed30
commit 2359506a7333686d0e3703070d2621b3cb06ed30
Author: Vincent Sanders <[email protected]>
Commit: Vincent Sanders <[email protected]>

    use more portable ccache detection

diff --git a/makefiles/Makefile.tools b/makefiles/Makefile.tools
index 2f0ca05..19c905c 100644
--- a/makefiles/Makefile.tools
+++ b/makefiles/Makefile.tools
@@ -399,7 +399,7 @@ XSLTPROC ?= xsltproc
 
 # CCACHE
 ifeq ($(origin CCACHE),undefined)
-  CCACHE=$(shell ccache -V >/dev/null 2>&1 && echo ccache || echo)
+  CCACHE=$(word 1,$(shell ccache -V 2>/dev/null))
 endif
 
 # CC


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

Summary of changes:
 makefiles/Makefile.tools |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/makefiles/Makefile.tools b/makefiles/Makefile.tools
index 2f0ca05..19c905c 100644
--- a/makefiles/Makefile.tools
+++ b/makefiles/Makefile.tools
@@ -399,7 +399,7 @@ XSLTPROC ?= xsltproc
 
 # CCACHE
 ifeq ($(origin CCACHE),undefined)
-  CCACHE=$(shell ccache -V >/dev/null 2>&1 && echo ccache || echo)
+  CCACHE=$(word 1,$(shell ccache -V 2>/dev/null))
 endif
 
 # CC


-- 
NetSurf Project build system

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

Reply via email to