From 72d68a3ad8137471384c3324a3dbe1546810766c Mon Sep 17 00:00:00 2001 From: Roland Jax Date: Wed, 21 Jan 2015 11:21:40 +0100 Subject: [PATCH] fix issue #26: make install should honor DESTDIR variable also for sysconfdir --- src/ebusd/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ebusd/Makefile.am b/src/ebusd/Makefile.am index 1bc1fcb0..0b845b61 100644 --- a/src/ebusd/Makefile.am +++ b/src/ebusd/Makefile.am @@ -24,4 +24,4 @@ distclean-local: -rm -rf .libs install-data-local: - [ -d $(sysconfdir)/ebusd ] || mkdir -p $(sysconfdir)/ebusd + [ -d $(DESTDIR)$(sysconfdir)/ebusd ] || mkdir -p $(DESTDIR)$(sysconfdir)/ebusd