Gitweb links:

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

The branch, master has been updated
       via  db5bcec3fd559e354efd8de8b9656ae780c3caea (commit)
      from  8d7ead2dea72c1b60dab316da7069467c62ea95d (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/libsvgtiny.git/commit/?id=db5bcec3fd559e354efd8de8b9656ae780c3caea
commit db5bcec3fd559e354efd8de8b9656ae780c3caea
Author: Michael Drake <[email protected]>
Commit: Michael Drake <[email protected]>

    Buildsystem: OpenBSD `sed` doesn't handle -i option.

diff --git a/src/Makefile b/src/Makefile
index ff4eaf4..751a12a 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -5,9 +5,10 @@ SOURCES := $(SOURCES)
 
 $(DIR)autogenerated_colors.c: src/colors.gperf
        $(VQ)$(ECHO) "   GPERF: $<"
-       $(Q)gperf --output-file=$@ $<
+       $(Q)gperf [email protected] $<
 # Squash "error: no previous declaration for 'svgtiny_color_lookup'"
-       $(Q)$(SED) -i 's/^\(const struct svgtiny_named_color\)/static \1/' $@
+       $(Q)$(SED) -e 's/^\(const struct svgtiny_named_color\)/static \1/' 
[email protected] >$@
+       $(Q)$(RM) [email protected]
 
 PRE_TARGETS := $(DIR)autogenerated_colors.c
 


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

Summary of changes:
 src/Makefile |    5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/Makefile b/src/Makefile
index ff4eaf4..751a12a 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -5,9 +5,10 @@ SOURCES := $(SOURCES)
 
 $(DIR)autogenerated_colors.c: src/colors.gperf
        $(VQ)$(ECHO) "   GPERF: $<"
-       $(Q)gperf --output-file=$@ $<
+       $(Q)gperf [email protected] $<
 # Squash "error: no previous declaration for 'svgtiny_color_lookup'"
-       $(Q)$(SED) -i 's/^\(const struct svgtiny_named_color\)/static \1/' $@
+       $(Q)$(SED) -e 's/^\(const struct svgtiny_named_color\)/static \1/' 
[email protected] >$@
+       $(Q)$(RM) [email protected]
 
 PRE_TARGETS := $(DIR)autogenerated_colors.c
 


-- 
NetSurf SVG decoder

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

Reply via email to