build: let 'make clean' remove logs/ again
authorPekka Paalanen <pekka.paalanen@collabora.co.uk>
Mon, 12 May 2014 07:08:57 +0000 (10:08 +0300)
committerKristian Høgsberg <krh@bitplanet.net>
Mon, 12 May 2014 17:07:03 +0000 (10:07 -0700)
Before in the recursive automake setting, we had tests/logs/ for
explicitly created test log files. There is a Makefile rule to
remove the logs directory on 'make clean'. The rule broke on moving to
non-recursive make, since now we have logs/, not tests/logs/.

Fix the rule to remove the intended directory.

Signed-off-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
Makefile.am

index 177ce2e..343adc6 100644 (file)
@@ -828,7 +828,7 @@ LA_LOG_COMPILER = $(srcdir)/tests/weston-tests-env
 WESTON_LOG_COMPILER = $(srcdir)/tests/weston-tests-env
 
 clean-local:
-       -rm -rf tests/logs
+       -rm -rf logs
 
 # To remove when automake 1.11 support is dropped
 export abs_builddir