From c5c4339f5b95541c16061d36c60e8400595c6758 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20W=C3=A4ckerlin?= Date: Fri, 26 Aug 2016 14:18:26 +0000 Subject: [PATCH] updated documentation build --- scripts/ax_init_standard_project.m4 | 5 ++++- scripts/bootstrap.sh | 6 +++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/scripts/ax_init_standard_project.m4 b/scripts/ax_init_standard_project.m4 index e3795b5..bc0fb7b 100644 --- a/scripts/ax_init_standard_project.m4 +++ b/scripts/ax_init_standard_project.m4 @@ -171,12 +171,13 @@ AC_DEFUN([AX_INIT_STANDARD_PROJECT], [ AX_SUBST(NUMBERS) AX_SUBST(HOME) if test -f README.md; then - README=$() + README=$(tail -n +3 README.md) DESCRIPTION=$(head -1 README.md) else README=$(tail -n +3 README) DESCRIPTION=$(head -1 README) fi + README_ESCAPED=$(echo "$README" | sed ':a;N;$!ba;s/\n/\\n/g;s,",\\",g') if which pandoc 2>&1 > /dev/null; then README_HTML=$(echo "$README" | pandoc -f markdown_github -t html | sed ':a;N;$!ba;s,\\\(.\),\\\\\1,g;s/\n/\\n/g;s,",\\",g;s, ,\ \ ,g') else @@ -184,6 +185,8 @@ AC_DEFUN([AX_INIT_STANDARD_PROJECT], [ fi AX_SUBST(README) _AM_SUBST_NOTMAKE([README]) + AX_SUBST(README_ESCAPED) + _AM_SUBST_NOTMAKE([README_ESCAPED]) AX_SUBST(README_HTML) _AM_SUBST_NOTMAKE([README_HTML]) AX_SUBST(DESCRIPTION) diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 0b8f192..9edc19e 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -529,7 +529,11 @@ ${DEFAULT_PROJECT_NAME} add description for ${DEFAULT_PROJECT_NAME} EOF to configure.ac <