diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2013-09-22 18:09:27 -0400 |
---|---|---|
committer | Gaetan Nadon <memsize@videotron.ca> | 2013-09-24 15:56:28 -0400 |
commit | eb23b149c176d1c735b4c658b33ce6686e47618b (patch) | |
tree | 83927979a00c269165a972a0182d215da115c4a8 /tools | |
parent | 60a6e4ec6068f7b3f237ca0a044cd31d3bcf1aeb (diff) |
"make dist" fails when workstation has no udev package
Unable to create a tar file for the vmmouse package or run distcheck for that
matter. In tools, when the dev package is not installed, the makefile code
under HAS_UDEV_RULES_DIR is commented out. That leaves $(udev_DATA) empty
which causes EXTRA_DIST to be missing a file.
The solution is to spell out the file name. The name can never change as the
content of the tarball must be the same for everyone creating a tar file from
git, regardless of their workstation configuration.
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am index ea7ba66..8ae5516 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -53,4 +53,4 @@ CLEANFILES += $(udev_DATA) endif # HAS_UDEV_RULES_DIR -EXTRA_DIST = $(udev_DATA).in hal-probe-vmmouse.in +EXTRA_DIST = 69-xorg-vmmouse.rules.in hal-probe-vmmouse.in |