From 92284a39ed00ac78dde224e448c1966514105bf1 Mon Sep 17 00:00:00 2001 From: Phil Shafer Date: Fri, 21 Apr 2017 15:45:30 -0400 Subject: [PATCH 1/3] Fix org tables; headers were failing --- doc/oxtradoc/oxtradoc.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/oxtradoc/oxtradoc.in b/doc/oxtradoc/oxtradoc.in index 5f26a7c1..c610f853 100644 --- a/doc/oxtradoc/oxtradoc.in +++ b/doc/oxtradoc/oxtradoc.in @@ -957,7 +957,7 @@ sub start_org_table { print " title=\"", esc($title), "\"" if $title; print "\>\n"; $org_header = 0; - org_table_header() unless $line =~ /^\--/; + org_table_header() unless $line =~ /^\|?--/; } sub org_table_header { From ed47bdf0ac195d6e1f51e711f5d375c325b2c9e8 Mon Sep 17 00:00:00 2001 From: Phil Shafer Date: Fri, 21 Apr 2017 15:45:41 -0400 Subject: [PATCH 2/3] fix doc typos --- doc/slax.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/slax.txt b/doc/slax.txt index b944e520..4bc22f1c 100644 --- a/doc/slax.txt +++ b/doc/slax.txt @@ -479,7 +479,7 @@ referenced using their name prefixed by the dollar sign. match / { { apply-templates configuration/system { - with $host=configuration/system/host-name; + with $host = configuration/system/host-name; } } } @@ -491,7 +491,7 @@ referenced using their name prefixed by the dollar sign. * generated, which contains the value of the host parameter. */ match system { - param $name = host; + param $host; $host; } From 9d3e657c13a70eeff2ae803e610981bfd2ff0ffa Mon Sep 17 00:00:00 2001 From: Phil Shafer Date: Fri, 21 Apr 2017 15:49:11 -0400 Subject: [PATCH 3/3] add "make distcheck" to avoid embarrassing surprises --- bin/new-release | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/new-release b/bin/new-release index 3f8634fd..72ac842e 100755 --- a/bin/new-release +++ b/bin/new-release @@ -102,6 +102,8 @@ cd $GIT_DIR/build run "configure" "../configure $CONFIGURE_OPTS" run "build and test" \ "make clean && make && make install && make test && make dist" +run "make distcheck" "make distcheck" + run "Commit any changes" "gt commit" run "upload any documentation changes to gh-pages/" "make upload"