From: John Mandereau Date: Thu, 7 Feb 2008 16:31:58 +0000 (+0100) Subject: Fix make Metafont rules again X-Git-Tag: release/2.11.40-1~3^2~20^2~9 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=e6b1dce42f83dafef0c4fbd8505077bf8585a74f;p=lilypond.git Fix make Metafont rules again $(src-dir) equals "." for builds with the same build dir as source dir, which causes 'make all' failure without this fix. --- diff --git a/stepmake/stepmake/metafont-rules.make b/stepmake/stepmake/metafont-rules.make index dfae13f1b4..64bdecf677 100644 --- a/stepmake/stepmake/metafont-rules.make +++ b/stepmake/stepmake/metafont-rules.make @@ -19,7 +19,7 @@ $(outdir)/%.pfb: %.mf $(outdir)/mf2pt1.mem TMP=`mktemp -d $(outdir)/pfbtemp.XXXXXXXXX` \ && ( cd $$TMP \ && ln -s ../mf2pt1.mem . \ - && MFINPUTS=$(src-dir):..:: $(PERL) $(top-src-dir)/buildscripts/mf2pt1.pl $(MF2PT1_OPTIONS) $< ) \ + && MFINPUTS=$(top-src-dir)/mf:..:: $(PERL) $(top-src-dir)/buildscripts/mf2pt1.pl $(MF2PT1_OPTIONS) $< ) \ && mv $$TMP/*pfb $(outdir); \ rm -rf $$TMP