diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2008-01-01 21:22:31 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2008-01-01 21:22:31 +0800 |
commit | f3546248ed3fbf5cf613ca25f0b7c024b073ca2b (patch) | |
tree | 535b835690b39c940914ce9e0524f62f10506629 /Makefile.am | |
parent | a02303d7ccbc548316b1d37ef79165c7dfe928f8 (diff) | |
download | gsoc2013-evolution-f3546248ed3fbf5cf613ca25f0b7c024b073ca2b.tar.gz gsoc2013-evolution-f3546248ed3fbf5cf613ca25f0b7c024b073ca2b.tar.zst gsoc2013-evolution-f3546248ed3fbf5cf613ca25f0b7c024b073ca2b.zip |
Add --with[out]-help option to make it possible to skip building and
2008-01-01 Matthew Barnes <mbarnes@redhat.com>
* configure.in:
Add --with[out]-help option to make it possible to skip
building and installing user documentation. (#504541)
svn path=/trunk/; revision=34743
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 73632252f9..f9d40c9539 100644 --- a/Makefile.am +++ b/Makefile.am @@ -49,10 +49,13 @@ SUBDIRS = \ ui \ views \ tools \ - help \ po \ sounds +if WITH_HELP +SUBDIRS += help +endif + DISTCLEANFILES = \ intltool-extract \ intltool-merge \ |