diff options
author | Nick Vinson <nvinson234@gmail.com> | 2012-11-26 13:38:21 -0500 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2012-11-26 23:52:18 -0500 |
commit | 29c8198c6fe21f154875516404b6abc460b258a6 (patch) | |
tree | 747f79a3ebaa14969c7186727588ce8d0318d2c5 /src | |
parent | 73577f3bcbca6d75faf53a476e1ce76c390f1a98 (diff) |
Add $(BUILT_SOURCES) to src/keymap/Makefile.am's CLEANFILES variable.
When run, 'make distcheck' verifies that no files remain in the build directory.
However, 'make distcheck' does not automatically delete $(BUILT_SOURCES) by
default which causes this check to fail. Adding $(BUILT_SOURCS) to CLEANFILES
corrects this behavior.
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/keymap/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/keymap/Makefile.am b/src/keymap/Makefile.am index b9a2010058..dcc29e9b65 100644 --- a/src/keymap/Makefile.am +++ b/src/keymap/Makefile.am @@ -37,7 +37,8 @@ TESTS = \ CLEANFILES = \ keys.txt \ keys-from-name.gperf \ - keyboard-force-release.sh + keyboard-force-release.sh \ + $(BUILT_SOURCES) EXTRA_DIST = \ check-keymaps.sh \ |