Gitweb links:
...log
http://git.netsurf-browser.org/netsurf.git/shortlog/1acf3abb399d8092aece0...
...commit
http://git.netsurf-browser.org/netsurf.git/commit/1acf3abb399d8092aece07a...
...tree
http://git.netsurf-browser.org/netsurf.git/tree/1acf3abb399d8092aece07acf...
The branch, master has been updated
via 1acf3abb399d8092aece07acf2151d70bef7774f (commit)
from ebe1b0511444e82830e8de239c34c6817817fba8 (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=1acf3abb399d8092aec...
commit 1acf3abb399d8092aece07acf2151d70bef7774f
Author: Vincent Sanders <vince(a)kyllikki.org>
Commit: Vincent Sanders <vince(a)kyllikki.org>
make the idna properties header building an explicit target
diff --git a/utils/Makefile b/utils/Makefile
index 430edf9..a0b73d7 100644
--- a/utils/Makefile
+++ b/utils/Makefile
@@ -82,7 +82,9 @@ utils/IdnaMappingTable.txt:
utils/idna-tables-properties.csv:
curl -o $@
"https://www.iana.org/assignments/idna-tables-$(IDNA_UNICODE_MAJOR).0.0/idna-tables-properties.csv"
-
+# the idna props header must be explicitly rebuilt
+ifneq ($(filter $(MAKECMDGOALS),utils/idna_props.h),)
utils/idna_props.h: utils/DerivedJoiningType.txt utils/idna-tables-properties.csv
$(VQ)echo " IDNA: $@"
$(Q)$(PERL) utils/idna-derived-props-gen.pl -o $@ -p utils/idna-tables-properties.csv -j
utils/DerivedJoiningType.txt
+endif
-----------------------------------------------------------------------
Summary of changes:
utils/Makefile | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/utils/Makefile b/utils/Makefile
index 430edf9..a0b73d7 100644
--- a/utils/Makefile
+++ b/utils/Makefile
@@ -82,7 +82,9 @@ utils/IdnaMappingTable.txt:
utils/idna-tables-properties.csv:
curl -o $@
"https://www.iana.org/assignments/idna-tables-$(IDNA_UNICODE_MAJOR).0.0/idna-tables-properties.csv"
-
+# the idna props header must be explicitly rebuilt
+ifneq ($(filter $(MAKECMDGOALS),utils/idna_props.h),)
utils/idna_props.h: utils/DerivedJoiningType.txt utils/idna-tables-properties.csv
$(VQ)echo " IDNA: $@"
$(Q)$(PERL) utils/idna-derived-props-gen.pl -o $@ -p utils/idna-tables-properties.csv -j
utils/DerivedJoiningType.txt
+endif
--
NetSurf Browser