diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-09-26 21:11:16 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-09-26 21:11:16 +0000 |
commit | ff1ba24f51709121f92edad1fa1df38160d7d4f4 (patch) | |
tree | 232041a21cd00edf91c6d6beab1962e279d18c09 /tools/bison/scripts | |
parent | ad5f485a4bff3f7458d80dd4775878f7081bb2b5 (diff) | |
download | upstream-ff1ba24f51709121f92edad1fa1df38160d7d4f4.tar.gz upstream-ff1ba24f51709121f92edad1fa1df38160d7d4f4.tar.bz2 upstream-ff1ba24f51709121f92edad1fa1df38160d7d4f4.zip |
bison: replace the yacc script with one that does not hardcode the path (fixes #20605)
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Backport of r47050
git-svn-id: svn://svn.openwrt.org/openwrt/branches/chaos_calmer@47051 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'tools/bison/scripts')
-rwxr-xr-x | tools/bison/scripts/yacc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/bison/scripts/yacc b/tools/bison/scripts/yacc new file mode 100755 index 0000000000..8f73e26fb1 --- /dev/null +++ b/tools/bison/scripts/yacc @@ -0,0 +1,2 @@ +#!/bin/sh +exec bison -y "$@" |