Skip to content

Commit

Permalink
Do not enable man page generation when
Browse files Browse the repository at this point in the history
it is disabled.

Signed-off-by: Jindrich Novy <[email protected]>
  • Loading branch information
jnovy committed Nov 29, 2024
1 parent 640eb95 commit d13b1bf
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion composefs.spec.in
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,11 @@ Library files for %{name}.
%autosetup -p1

%build
%meson --default-library=shared -Dfuse=enabled -Dman=enabled
%if %{with man}
%meson --default-library=shared -Dfuse=enabled -Dman=enabled
%else
%meson --default-library=shared -Dfuse=enabled -Dman=disabled
%endif
%meson_build

%install
Expand Down

0 comments on commit d13b1bf

Please sign in to comment.