forked from Dark-Horse-Linux/pyrois
12 lines
114 B
Bash
12 lines
114 B
Bash
|
#!/bin/bash
|
||
|
set -u
|
||
|
|
||
|
export LC_ALL=C
|
||
|
|
||
|
app="yacc"
|
||
|
expected_target="bison"
|
||
|
|
||
|
sym_check $app $expected_target
|
||
|
|
||
|
exit $?
|