Gitweb links:

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

The branch, master has been updated
       via  d9799299f8c639a65bf317e299e49c0eb5539398 (commit)
      from  dd6d24e83dca2f47558193ae77a8de368eae338a (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/commitdiff/d9799299f8c639a65bf317e299e49c0eb5539398
commit d9799299f8c639a65bf317e299e49c0eb5539398
Author: Vincent Sanders <[email protected]>
Commit: Vincent Sanders <[email protected]>

    make ccache detection more portable

diff --git a/Makefile b/Makefile
index 5cecd97..0dce8c8 100644
--- a/Makefile
+++ b/Makefile
@@ -266,7 +266,7 @@ endif
 
 # 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 := $(CCACHE) $(CC)
 


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

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

diff --git a/Makefile b/Makefile
index 5cecd97..0dce8c8 100644
--- a/Makefile
+++ b/Makefile
@@ -266,7 +266,7 @@ endif
 
 # 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 := $(CCACHE) $(CC)
 


-- 
NetSurf Browser

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

Reply via email to