From 595ecf29d2b2896f2da74719c3c733a8f3afeee7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= Date: Thu, 22 Feb 2018 15:45:38 +0000 Subject: [PATCH] make: fix long line in makefile that violate syntax-check rules MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Daniel P. Berrangé --- src/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Makefile.am b/src/Makefile.am index 8ceeda5756..a7f03319c1 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -2833,7 +2833,8 @@ install-sysconfig: for f in $(SYSCONF_FILES:%.sysconf=%) ; \ do \ tgt=`basename $$f`; \ - $(INSTALL_SCRIPT) $(srcdir)/$$f.sysconf $(DESTDIR)$(sysconfdir)/sysconfig/$$tgt; \ + $(INSTALL_SCRIPT) $(srcdir)/$$f.sysconf \ + $(DESTDIR)$(sysconfdir)/sysconfig/$$tgt; \ done uninstall-sysconfig: -- GitLab