From cc7f7307b06bd9ce4da698be71ddba5042399363 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Tue, 5 Aug 2003 05:18:40 +0000 Subject: [PATCH] Fix building of dist target. On my previous changes for grammar building I unintentionally removed the building of the yyacc program. [SVN r19457] --- src/engine/build.jam | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/engine/build.jam b/src/engine/build.jam index 555d7e5f8..b86ebc33f 100644 --- a/src/engine/build.jam +++ b/src/engine/build.jam @@ -456,6 +456,10 @@ if $(grammar) { .yyacc jamgram.y jamgramtab.h : jamgram.yy ; } +else +{ + .exe yyacc : yyacc.c ; +} # How to build the grammar. if $(NT)