From: Manuel Novoa III Date: Thu, 11 Mar 2004 08:03:44 +0000 (-0000) Subject: Patch from "Kevin P. Fleming" . X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5875ffa3fe4ec090ba64a726314ab87f00023bd2;p=buildroot.git Patch from "Kevin P. Fleming" . Provides a script for yacc in terms of bison instead of a symlink. --- diff --git a/make/bison.mk b/make/bison.mk index 71a6d7788f..89c9b916cc 100644 --- a/make/bison.mk +++ b/make/bison.mk @@ -49,7 +49,7 @@ $(TARGET_DIR)/$(BISON_TARGET_BINARY): $(BISON_DIR)/$(BISON_BINARY) $(MAKE) DESTDIR=$(TARGET_DIR) CC=$(TARGET_CC) -C $(BISON_DIR) install rm -rf $(TARGET_DIR)/share/locale $(TARGET_DIR)/usr/info \ $(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/share/doc - (cd $(TARGET_DIR)/usr/bin; ln -fs bison yacc) + cp -a $(SOURCE_DIR)/yacc $(TARGET_DIR)/usr/bin/yacc bison: uclibc $(TARGET_DIR)/$(BISON_TARGET_BINARY) diff --git a/sources/yacc b/sources/yacc new file mode 100755 index 0000000000..aed120e88a --- /dev/null +++ b/sources/yacc @@ -0,0 +1,2 @@ +#!/bin/sh +exec /usr/bin/bison -y "$@"