From 0c0cd9aefd3074bb518e640aabada9aabb4cb313 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Fri, 27 Nov 2015 11:50:57 +0000 Subject: [PATCH] Fix shell syntax for installcheck-local with no DESTDIR A closing brace must be preceded by a semicolon. The CI integration added later in this branch actually runs "make installcheck" with no DESTDIR; apparently nobody else has ever tried that. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=93194 Reviewed-by: Ralf Habacker --- test/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Makefile.am b/test/Makefile.am index b7f40bb..c7bdea2 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -294,7 +294,7 @@ if DBUS_ENABLE_INSTALLED_TESTS $(installcheck_environment) \ $(srcdir)/dbus-test-runner \ $(testexecdir) \ - $(testexec_PROGRAMS) } + $(testexec_PROGRAMS); } endif DBUS_ENABLE_INSTALLED_TESTS in_data = \ -- 2.7.4