psyclpc/src/hosts/be/beyacc

11 lines
182 B
Plaintext
Raw Normal View History

2009-03-03 03:27:01 +00:00
#!/bin/sh
#
# Wrapper to call the proper parser generator: byacc if it is installed,
# otherwise bison.
if [ $(type -p byacc) ]; then
exec byacc $*
else
exec bison -y $*
fi