mirror of https://github.com/hak5/openwrt-owl.git
bison: replace the yacc script with one that does not hardcode the path (fixes #20605)
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 47050owl
parent
a883639e92
commit
877f2972d4
|
@ -23,4 +23,9 @@ define Host/Clean
|
||||||
$(call Host/Clean/Default)
|
$(call Host/Clean/Default)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define Host/Install
|
||||||
|
$(call Host/Install/Default)
|
||||||
|
$(INSTALL_BIN) ./scripts/yacc $(STAGING_DIR_HOST)/bin/yacc
|
||||||
|
endef
|
||||||
|
|
||||||
$(eval $(call HostBuild))
|
$(eval $(call HostBuild))
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/sh
|
||||||
|
exec bison -y "$@"
|
Loading…
Reference in New Issue