diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-09-22 06:45:10 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-09-22 06:45:10 +0000 |
commit | dedc27c60371139fd6cc806d055ba8aee80cc3f9 (patch) | |
tree | 763e1da6f59a9b9b8e611c0f18a819021205451c | |
parent | f987aa11082d00235d65228e9e3fc7266ea23fa4 (diff) | |
download | buildroot-novena-dedc27c60371139fd6cc806d055ba8aee80cc3f9.tar.gz buildroot-novena-dedc27c60371139fd6cc806d055ba8aee80cc3f9.zip |
ver bump
-rw-r--r-- | package/bison/bison.mk | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/package/bison/bison.mk b/package/bison/bison.mk index d9ec72fde..5c9551bc7 100644 --- a/package/bison/bison.mk +++ b/package/bison/bison.mk @@ -3,9 +3,10 @@ # bison # ############################################################# -BISON_SOURCE:=bison-1.35.tar.bz2 +BISON_VER:=2.1 +BISON_SOURCE:=bison-$(BISON_VER).tar.bz2 BISON_SITE:=ftp://ftp.gnu.org/gnu/bison -BISON_DIR:=$(BUILD_DIR)/bison-1.35 +BISON_DIR:=$(BUILD_DIR)/bison-$(BISON_VER) BISON_CAT:=bzcat BISON_BINARY:=src/bison BISON_TARGET_BINARY:=usr/bin/bison @@ -40,6 +41,7 @@ $(BISON_DIR)/.configured: $(BISON_DIR)/.unpacked --infodir=/usr/info \ $(DISABLE_NLS) \ ); + echo 'all install:' > $(BISON_DIR)/examples/Makefile touch $(BISON_DIR)/.configured $(BISON_DIR)/$(BISON_BINARY): $(BISON_DIR)/.configured |