From: Han-Wen Nienhuys Date: Sat, 12 Nov 2005 16:41:29 +0000 (+0000) Subject: (local-install-files): X-Git-Tag: release/2.7.17~29 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=b3ab29ecec5ce9bbbcb334c86c36b9cfc06bba86;p=lilypond.git (local-install-files): prepend src-dir to install targets. --- diff --git a/ChangeLog b/ChangeLog index f35d67225c..8bdbfed1f3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2005-11-12 Han-Wen Nienhuys + * stepmake/stepmake/install-targets.make (local-install-files): + prepend src-dir to install targets. + * lily/system-start-delimiter-engraver.cc (acknowledge_system_start_delimiter): use add_offset_callback(). This fixes translation of nested diff --git a/stepmake/stepmake/install-targets.make b/stepmake/stepmake/install-targets.make index 8fe3c6d0c6..9e89eedbf6 100644 --- a/stepmake/stepmake/install-targets.make +++ b/stepmake/stepmake/install-targets.make @@ -7,11 +7,11 @@ local-install-outfiles: local-install-files: $(INSTALLATION_FILES) $(PRE_INSTALL) -$(INSTALL) -d $(DESTDIR)$(INSTALLATION_DIR) - for i in $(INSTALLATION_FILES); do \ + for i in $(foreach j,$(INSTALLATION_FILES),$(src-dir)/$(j)); do \ $(INSTALL) -m 644 $$i $(DESTDIR)$(INSTALLATION_DIR)/ ; done $(foreach suff, $(INSTALLATION_SUFFIXES), \ ($(INSTALL) -d $(DESTDIR)$(INSTALLATION_DIR$(suff)) || true) && \ - for i in $(INSTALLATION_FILES$(suff)); do \ + for i in $(foreach j,INSTALLATION_FILES$(suff), $(src-dir)/$(j)); do \ $(INSTALL) -m 644 $$i $(DESTDIR)$(INSTALLATION_DIR$(suff))/; done ) $(POST_INSTALL)