Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
U
unique-xids
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
uplex-varnish
unique-xids
Commits
8d38f05c
Commit
8d38f05c
authored
May 11, 2011
by
Tollef Fog Heen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Hook changes.rst into build system
parent
7b841df8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
1 deletion
+19
-1
configure.ac
configure.ac
+6
-0
Makefile.am
doc/Makefile.am
+13
-1
No files found.
configure.ac
View file @
8d38f05c
...
...
@@ -56,6 +56,12 @@ if test "x$RST2MAN" = "xno"; then
fi
AM_CONDITIONAL(HAVE_RST2MAN,[test "x$RST2MAN" != "xno"])
AC_CHECK_PROGS(RST2HTML, [rst2html rst2html.py], "no")
if test "x$RST2HTML" = "xno"; then
AC_MSG_WARN([rst2html not found – not building changelog])
fi
AM_CONDITIONAL(HAVE_RST2HTML,[test "x$RST2HTML" != "xno"])
# Checks for libraries.
save_LIBS="${LIBS}"
LIBS=""
...
...
doc/Makefile.am
View file @
8d38f05c
...
...
@@ -44,7 +44,8 @@ all: ${CHANGELOGS}
endif
EXTRA_DIST
=
${
CHANGELOGS
}
${
XML
}
\
changes.css changes-html.xsl
changes.css changes-html.xsl
\
changes.rst changes.html
CLEANFILES
=
${
CHANGELOGS
}
SUFFIXES
=
.xml .html
...
...
@@ -59,6 +60,17 @@ else
@false
endif
changes.html
:
changes.rst
if
HAVE_RST2HTML
${RST2HTML}
$?
$@
else
@echo
"========================================"
@echo
"You need rst2html installed to make dist"
@echo
"========================================"
@false
endif
${CHANGELOGS}
:
changes-html.xsl
SUBDIRS
=
sphinx
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment