diff options
author | unknown <kent@mysql.com/kent-amd64.(none)> | 2007-11-22 17:48:40 +0100 |
---|---|---|
committer | unknown <kent@mysql.com/kent-amd64.(none)> | 2007-11-22 17:48:40 +0100 |
commit | c6f0c29acbd77a6b12f58775a68701913b3ce094 (patch) | |
tree | 4216c7e9b6af61dec349e2529c16790908ec1e02 /configure.in | |
parent | e8673939b1744bdf9398fb38d62f462066a70fd2 (diff) | |
download | mariadb-git-c6f0c29acbd77a6b12f58775a68701913b3ce094.tar.gz |
Makefile.am, configure.in:
Include "manual.chm" in source TAR if it exists
configure.in:
Include "manual.chm" in source TAR if it exists
Docs/Makefile.am:
Include "manual.chm" in source TAR if it exists
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.in b/configure.in index e042bb80719..ead2f85afb7 100644 --- a/configure.in +++ b/configure.in @@ -2452,10 +2452,15 @@ AC_ARG_WITH(docs, if test "$with_docs" = "yes" then docs_dirs="Docs" + if test -f "$srcdir/Docs/manual.chm" ; then + extra_docs="manual.chm" + fi else docs_dirs="" + extra_docs="" fi AC_SUBST(docs_dirs) +AC_SUBST(extra_docs) # Shall we build the man pages? AC_ARG_WITH(man, |