]> git.donarmstrong.com Git - lilypond.git/commitdiff
(local-install-files):
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Sat, 12 Nov 2005 16:41:29 +0000 (16:41 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Sat, 12 Nov 2005 16:41:29 +0000 (16:41 +0000)
prepend src-dir to install targets.

ChangeLog
stepmake/stepmake/install-targets.make

index f35d67225cf600cb2c1ec446ec5f5357e110c1cd..8bdbfed1f363c250fb7ced3708b5e1d02cf1fd2d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2005-11-12  Han-Wen Nienhuys  <hanwen@xs4all.nl>
 
+       * 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
index 8fe3c6d0c65249cad11abde2980e044923f6e311..9e89eedbf6b65dd98ccfe8e8a15bae52646632a4 100644 (file)
@@ -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)