From: Julien Rioux Date: Mon, 19 Dec 2011 15:31:44 +0000 (-0500) Subject: Build: Dependency fix for the linking into out/share/lilypond/current. X-Git-Tag: release/2.15.26-1~4 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=77c5e6ba0ee7e5aad7c4ff339e728fb9d2ce285e;p=lilypond.git Build: Dependency fix for the linking into out/share/lilypond/current. --- diff --git a/GNUmakefile.in b/GNUmakefile.in index d355f5a9cb..61e3929943 100644 --- a/GNUmakefile.in +++ b/GNUmakefile.in @@ -161,8 +161,10 @@ PO_FILES = $(call src-wildcard,$(src-depth)/po/*.po) HELP_CATALOGS = $(PO_FILES:po/%.po=%) CATALOGS = $(HELP_CATALOGS:lilypond=) -$(tree-share-prefix)/lilypond-force link-tree: GNUmakefile $(outdir)/VERSION # Preparing LilyPond tree for build-dir exec +link-tree: $(tree-share-prefix)/lilypond-force + +$(tree-share-prefix)/lilypond-force: GNUmakefile $(outdir)/VERSION cd $(top-build-dir)/$(outbase) && rm -rf bin lib share mkdir -p $(tree-bin) mkdir -p $(tree-share-prefix) @@ -205,7 +207,9 @@ $(tree-share-prefix)/lilypond-force link-tree: GNUmakefile $(outdir)/VERSION ln -sf ../../../../../po/$(outconfbase)/$i.mo lilypond.mo) &&) true touch $(tree-share-prefix)/lilypond-force -$(tree-share-prefix)/mf-link-tree link-mf-tree: $(tree-share-prefix)/lilypond-force +link-mf-tree: $(tree-share-prefix)/mf-link-tree + +$(tree-share-prefix)/mf-link-tree: $(tree-share-prefix)/lilypond-force -rm -f $(tree-share-prefix)/fonts/otf/* && \ rm -f $(tree-share-prefix)/fonts/svg/* && \ rm -f $(tree-share-prefix)/fonts/fonts.conf && \ @@ -223,6 +227,7 @@ $(tree-share-prefix)/mf-link-tree link-mf-tree: $(tree-share-prefix)/lilypond-fo ln -s ../../../../../../mf/$(outconfbase)/*.tfm . -cd $(tree-share-prefix)/fonts/type1 && \ ln -s ../../../../../../mf/$(outconfbase)/*.pf? . + touch $(tree-share-prefix)/mf-link-tree TAGS.make: dummy etags -o $@ $(find $(top-src-dir) -name 'GNUmakefile*' -o -name '*.make')