From e6b1dce42f83dafef0c4fbd8505077bf8585a74f Mon Sep 17 00:00:00 2001 From: John Mandereau Date: Thu, 7 Feb 2008 17:31:58 +0100 Subject: [PATCH] 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. --- stepmake/stepmake/metafont-rules.make | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5