From 9c13147a3a7479414addfe58132a78f4311b74ad Mon Sep 17 00:00:00 2001 From: Mark Wielaard Date: Wed, 8 Jan 2025 12:37:35 +0100 Subject: [PATCH] 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 --- config/Makefile.am | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; \ -- 2.47.3