build: Don't install sysconfig files as scripts

The files are not scripts and should not be executable.

Broken by v4.0.0-294-g5f998681df.

Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
This commit is contained in:
Jiri Denemark 2018-06-04 23:07:16 +02:00
parent 4370ac84f8
commit 91038dfb3b
1 changed files with 1 additions and 1 deletions

View File

@ -768,7 +768,7 @@ install-sysconfig:
for f in $(SYSCONF_FILES:%.sysconf=%) ; \
do \
tgt=`basename $$f`; \
$(INSTALL_SCRIPT) $(srcdir)/$$f.sysconf \
$(INSTALL_DATA) $(srcdir)/$$f.sysconf \
$(DESTDIR)$(sysconfdir)/sysconfig/$$tgt; \
done