summaryrefslogtreecommitdiff
path: root/storage/innobase/pars/make_bison.sh
blob: 43b0322494ce4713b093bfc9fab5e7d716ebd3f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash
#
# regenerate parser from bison input files as documented at the top of
# pars0lex.l.

set -eu

bison -d pars0grm.y
mv pars0grm.tab.c pars0grm.c
mv pars0grm.tab.h pars0grm.h
cp pars0grm.h ../include