Gitweb links:

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

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

    fix riscos makefile tempfile creation

diff --git a/riscos/Makefile.target b/riscos/Makefile.target
index 9e82406..3498660 100644
--- a/riscos/Makefile.target
+++ b/riscos/Makefile.target
@@ -105,12 +105,10 @@ CLEANS += clean-run
 # Install target
 # ----------------------------------------------------------------------------
 
-install-riscos: netsurf.zip
-
 netsurf.zip: $(EXETARGET)
-       TMPDIR:=$(shell mktemp -d)
+       $(eval $@_TMPDIR := $(shell mktemp -d))
        $(Q) $(RM) $@
-       rsync --archive --verbose $(CURDIR)/!NetSurf $(TMPDIR)
-       mv $(TMPDIR)/!NetSurf/ReadMe $(TMPDIR)
-       $(shell cd $(TMPDIR) && /opt/netsurf/arm-unknown-riscos/env/bin/zip 
-9vr, $(CURDIR)/$@ *)
-       $(Q) $(RM) $(TMPDIR)
+       rsync --archive --verbose $(CURDIR)/!NetSurf $($@_TMPDIR)
+       mv $($@_TMPDIR)/!NetSurf/ReadMe $($@_TMPDIR)
+       $(shell cd $($@_TMPDIR) && /opt/netsurf/arm-unknown-riscos/env/bin/zip 
-9vr, $(CURDIR)/$@ *)
+       $(Q) $(RM) $($@_TMPDIR)


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

Summary of changes:
 riscos/Makefile.target |   12 +++++-------
 1 files changed, 5 insertions(+), 7 deletions(-)

diff --git a/riscos/Makefile.target b/riscos/Makefile.target
index 9e82406..3498660 100644
--- a/riscos/Makefile.target
+++ b/riscos/Makefile.target
@@ -105,12 +105,10 @@ CLEANS += clean-run
 # Install target
 # ----------------------------------------------------------------------------
 
-install-riscos: netsurf.zip
-
 netsurf.zip: $(EXETARGET)
-       TMPDIR:=$(shell mktemp -d)
+       $(eval $@_TMPDIR := $(shell mktemp -d))
        $(Q) $(RM) $@
-       rsync --archive --verbose $(CURDIR)/!NetSurf $(TMPDIR)
-       mv $(TMPDIR)/!NetSurf/ReadMe $(TMPDIR)
-       $(shell cd $(TMPDIR) && /opt/netsurf/arm-unknown-riscos/env/bin/zip 
-9vr, $(CURDIR)/$@ *)
-       $(Q) $(RM) $(TMPDIR)
+       rsync --archive --verbose $(CURDIR)/!NetSurf $($@_TMPDIR)
+       mv $($@_TMPDIR)/!NetSurf/ReadMe $($@_TMPDIR)
+       $(shell cd $($@_TMPDIR) && /opt/netsurf/arm-unknown-riscos/env/bin/zip 
-9vr, $(CURDIR)/$@ *)
+       $(Q) $(RM) $($@_TMPDIR)


-- 
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