diff options
author | obrien <obrien@FreeBSD.org> | 2000-01-21 09:43:22 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2000-01-21 09:43:22 +0000 |
commit | 07c3224020b83c0053266249faebcba02c22023a (patch) | |
tree | 3e136286fe78e898b014e523795f538896bf9509 /deskutils | |
parent | f7aa36b692a2a34461ebd4eff298d7e63db6d6e1 (diff) | |
download | FreeBSD-ports-07c3224020b83c0053266249faebcba02c22023a.zip FreeBSD-ports-07c3224020b83c0053266249faebcba02c22023a.tar.gz |
Use YACC rather than bison.
Diffstat (limited to 'deskutils')
-rw-r--r-- | deskutils/abacus/files/patch-aa | 13 | ||||
-rw-r--r-- | deskutils/abacus/files/patch-aj | 13 |
2 files changed, 23 insertions, 3 deletions
diff --git a/deskutils/abacus/files/patch-aa b/deskutils/abacus/files/patch-aa index a4e3db0..e583506 100644 --- a/deskutils/abacus/files/patch-aa +++ b/deskutils/abacus/files/patch-aa @@ -1,6 +1,13 @@ ---- Makefile.options Tue Oct 20 20:19:08 1998 -+++ /home/andy/tmp/wrk/Makefile.options Tue Jan 5 17:08:02 1999 -@@ -18,7 +18,7 @@ +--- Makefile.options.orig Tue Oct 20 13:19:08 1998 ++++ Makefile.options Thu Jan 20 18:04:03 2000 +@@ -12,13 +12,13 @@ + CPP=g++ -E + + # Grammar generator - e.g. bison,yacc +-YACC = bison ++YACC = yacc + + # Lexical scanner - e.g. flex,lex LEX = flex # Favourite flags for favourite compiler diff --git a/deskutils/abacus/files/patch-aj b/deskutils/abacus/files/patch-aj new file mode 100644 index 0000000..2eef816 --- /dev/null +++ b/deskutils/abacus/files/patch-aj @@ -0,0 +1,13 @@ +--- calc/Makefile.orig Tue Oct 20 06:41:42 1998 ++++ calc/Makefile Thu Jan 20 18:36:31 2000 +@@ -40,8 +40,8 @@ + + gram.cc: gram.y scan.c + $(YACC) -d gram.y +- mv gram.tab.c gram.cc +- mv gram.tab.h gram.h ++ mv y.tab.c gram.cc ++ mv y.tab.h gram.h + + # + # include a dependency file if one exists |