mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2025-12-20 23:20:11 +01:00
man: Fix typo and use $() for make expressions
Due to the typo, none of the .xml files would end up in the release tarball and cause make distcheck as well as builds from the tarball to fail. Using $() isn't strictly necessary but other variables and expressions use that variant already so it makes the usage consistent. Reviewed-by: David Herrmann <dh.herrmann@googlemail.com> Signed-off-by: Thierry Reding <thierry.reding@avionic-design.de>
This commit is contained in:
parent
303ca37e72
commit
9dc0072e8d
1 changed files with 2 additions and 1 deletions
|
|
@ -17,7 +17,8 @@ MANPAGES_ALIASES = \
|
||||||
drm-ttm.7
|
drm-ttm.7
|
||||||
|
|
||||||
XML_FILES = \
|
XML_FILES = \
|
||||||
${patsubst %.1,%.xml,${patsubst %.3,%.xml,${patsubst %.5,%.xml,${patsubs %.7,%.xml,$(MANPAGES)}}}}
|
$(patsubst %.1,%.xml,$(patsubst %.3,%.xml,$(patsubst %.5,%.xml,$(patsubst %.7,%.xml,$(MANPAGES)))))
|
||||||
|
|
||||||
EXTRA_DIST = $(XML_FILES)
|
EXTRA_DIST = $(XML_FILES)
|
||||||
CLEANFILES = $(MANPAGES) $(MANPAGES_ALIASES) .man_fixup
|
CLEANFILES = $(MANPAGES) $(MANPAGES_ALIASES) .man_fixup
|
||||||
man_MANS =
|
man_MANS =
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue