From: Mark Wielaard Date: Wed, 8 Jan 2025 11:37:35 +0000 (+0100) Subject: config: Put the -D option as first argument to INSTALL_DATA X-Git-Tag: elfutils-0.193~63 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9c13147a3a7479414addfe58132a78f4311b74ad;p=thirdparty%2Felfutils.git config: Put the -D option as first argument to INSTALL_DATA INSTALL_DATA uses the install program to install files. The GNU coreutils implementation of install takes options anywhere. Other implementations of install might take options only before the source and destination arguments. * config/Makefile.am (all-local): Move -D option before file and directory arguments. Signed-off-by: Mark Wielaard --- diff --git a/config/Makefile.am b/config/Makefile.am index 2dcbe94e..11693ed4 100644 --- a/config/Makefile.am +++ b/config/Makefile.am @@ -42,9 +42,9 @@ all-local: sed -i 's/{prefix}/prefix/g' profile.fish install-data-local: - $(INSTALL_DATA) profile.sh -D $(DESTDIR)$(sysconfdir)/profile.d/debuginfod.sh - $(INSTALL_DATA) profile.csh -D $(DESTDIR)$(sysconfdir)/profile.d/debuginfod.csh - $(INSTALL_DATA) profile.fish -D $(DESTDIR)$(datadir)/fish/vendor_conf.d/debuginfod.fish + $(INSTALL_DATA) -D profile.sh $(DESTDIR)$(sysconfdir)/profile.d/debuginfod.sh + $(INSTALL_DATA) -D profile.csh $(DESTDIR)$(sysconfdir)/profile.d/debuginfod.csh + $(INSTALL_DATA) -D profile.fish $(DESTDIR)$(datadir)/fish/vendor_conf.d/debuginfod.fish mkdir -p $(DESTDIR)$(sysconfdir)/debuginfod if [ -n "@DEBUGINFOD_URLS@" ]; then \ echo "@DEBUGINFOD_URLS@" > $(DESTDIR)$(sysconfdir)/debuginfod/elfutils.urls; \