From 9324bb52f30cb6d0ff2828e1a63056d9c78960a1 Mon Sep 17 00:00:00 2001 From: Michal Marek Date: Fri, 4 Apr 2014 11:30:07 +0200 Subject: [PATCH] testsuite: Warn if sysconfdir is not /etc --- Makefile.am | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index e65fdfb..199588c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -213,7 +213,14 @@ TESTSUITE_OVERRIDE_LIBS = testsuite/uname.la testsuite/path.la \ TESTSUITE_OVERRIDE_LIBS_LDFLAGS = avoid-version -module -shared -export-dynamic \ -rpath /nowhere -ldl -check-am: rootfs +check-sysconfdir: + $(AM_V_at)if test "$(sysconfdir)" != "/etc" -a "$(sysconfdir)" != "/etc/"; then \ + echo "warning: Some tests will fail without --sysconfdir=/etc" >&2; \ + fi +.PHONY: check-sysconfdir + +check-am: rootfs check-sysconfdir + check_LTLIBRARIES = $(TESTSUITE_OVERRIDE_LIBS) -- 2.7.4