commit 9a00d8b6adef347619ab13b15303b523d78ca02f Author: Peter Simons Date: Mon Mar 19 15:54:54 2012 -0400 Makefile.am: install target in doc/Makefile.am doesn't honor sysconfdir Signed-off-by: Steve Dickson diff --git a/doc/Makefile.am b/doc/Makefile.am index cc4fa76..f8c88b5 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -1,5 +1,5 @@ install: install-am - $(mkinstalldirs) $(DESTDIR)/etc - cp -p ./etc_netconfig $(DESTDIR)/etc/netconfig - chmod 0644 $(DESTDIR)/etc/netconfig + $(mkinstalldirs) $(DESTDIR)/$(sysconfdir) + cp -p ./etc_netconfig $(DESTDIR)/$(sysconfdir)/netconfig + chmod 0644 $(DESTDIR)/$(sysconfdir)/netconfig