summaryrefslogtreecommitdiff
path: root/src/cmd/8a
diff options
context:
space:
mode:
authorAdam Langley <agl@golang.org>2012-02-21 10:50:58 -0500
committerAdam Langley <agl@golang.org>2012-02-21 10:50:58 -0500
commitdc86bef972f15bf52f974aabcedaa80dfd5fdcc2 (patch)
treef26975777c68f0aeb837eba67c6b72017d3da173 /src/cmd/8a
parent786d96d3130d2e4847990961d2fe14ea797801a0 (diff)
downloadgo-dc86bef972f15bf52f974aabcedaa80dfd5fdcc2.tar.gz
cmd/*: add -d option to bison.
Without -d, bison doesn't generate y.tab.h. R=rsc CC=golang-dev http://codereview.appspot.com/5685065
Diffstat (limited to 'src/cmd/8a')
-rw-r--r--src/cmd/8a/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/8a/Makefile b/src/cmd/8a/Makefile
index 538ffb1a7..27290ddd7 100644
--- a/src/cmd/8a/Makefile
+++ b/src/cmd/8a/Makefile
@@ -7,4 +7,4 @@ include ../../Make.dist
install: y.tab.h
y.tab.h: a.y
- LANG=C LANGUAGE=en_US.UTF8 bison -v -y a.y
+ LANG=C LANGUAGE=en_US.UTF8 bison -d -v -y a.y