Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: don't build FvwmConsole.1 if FvwmPrompt enabled #700

Merged
merged 1 commit into from Sep 18, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 9 additions & 1 deletion doc/Makefile.am
@@ -1,5 +1,5 @@
docdir = @FVWM_DOCDIR@
MODULE_ADOC = \
MODULE_ADOC_SRCS = \
fvwm3.adoc \
fvwm3all.adoc \
fvwm3commands.adoc \
Expand All @@ -8,6 +8,14 @@ MODULE_ADOC = \
$(wildcard Fvwm*.adoc) \
$(wildcard fvwm-*.adoc)

# If building FvwmPrompt, don't generate the manpage for FvwmConsole as that
# won't ever be installed.
if FVWM_BUILD_GOLANG
MODULE_ADOC = $(filter-out FvwmConsole.adoc, $(MODULE_ADOC_SRCS))
else
MODULE_ADOC = $(MODULE_ADOC_SRCS)
endif

EXTRA_DIST = $(MODULE_ADOC)

nothing:
Expand Down