diff options
author | Karl Berry <karl@freefriends.org> | 2008-03-01 23:49:05 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2008-03-01 23:49:05 +0000 |
commit | 15b55e65bc7b64a139e2c7e4fdef5ea8a2923f26 (patch) | |
tree | 0de44a7d07f35959abc5b634d5f867ffce8a3b81 /Build/source/texk/web2c/omegafonts | |
parent | b99dd95f1b06fd3b6028345cd95967652311fe95 (diff) |
parallel build fix from gentoo
git-svn-id: svn://tug.org/texlive/trunk@6795 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/omegafonts')
-rw-r--r-- | Build/source/texk/web2c/omegafonts/ChangeLog | 6 | ||||
-rw-r--r-- | Build/source/texk/web2c/omegafonts/Makefile.in | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/omegafonts/ChangeLog b/Build/source/texk/web2c/omegafonts/ChangeLog index f802f710d2f..4fa26b5007a 100644 --- a/Build/source/texk/web2c/omegafonts/ChangeLog +++ b/Build/source/texk/web2c/omegafonts/ChangeLog @@ -1,3 +1,9 @@ +2008-03-02 Karl Berry <karl@tug.org> + + * Makefile.in (omfonts.o): depend on y_tab.h. + From Alexis Ballier, 29 Feb 2008 19:27:23, via + https://bugs.gentoo.org/show_bug.cgi?id=209362. + 2008-01-29 Peter Breitenlohner <peb@mppmu.mpg.de> * Makefile.in: Add @configure_input@ line. diff --git a/Build/source/texk/web2c/omegafonts/Makefile.in b/Build/source/texk/web2c/omegafonts/Makefile.in index 4f61f7eb878..9fb8d3f1cf7 100644 --- a/Build/source/texk/web2c/omegafonts/Makefile.in +++ b/Build/source/texk/web2c/omegafonts/Makefile.in @@ -39,7 +39,7 @@ y_tab.c y_tab.h: pl.y $(YACC) -d -v $(srcdir)/pl.y -test -f y.tab.c && mv -f y.tab.c y_tab.c -test -f y.tab.h && mv -f y.tab.h y_tab.h -$(LEX_OUTPUT_ROOT).o: parser.h +$(LEX_OUTPUT_ROOT).o: parser.h y_tab.h $(LEX_OUTPUT_ROOT).c: pl.l $(LEX) $(srcdir)/pl.l |