From: ms Date: Mon, 31 Dec 2007 12:54:32 +0000 (+0000) Subject: The binutils got an error when using texinfo greater than version 4.9. X-Git-Tag: v3.0-alpha1~1129 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=78dd2d5f4fbaed034c357cbdacde7f0262abf491;p=ipfire-3.x.git The binutils got an error when using texinfo greater than version 4.9. Fixed this with a patch from LFS. git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@1137 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8 --- diff --git a/lfs/binutils b/lfs/binutils index 99b3bccea..ac6b5152e 100644 --- a/lfs/binutils +++ b/lfs/binutils @@ -25,7 +25,7 @@ include Config PKG_NAME = binutils -VER = 2.17 +VER = 2.18 THISAPP = $(PKG_NAME)-$(VER) DL_FILE = $(THISAPP).tar.bz2 @@ -41,7 +41,7 @@ endif # Top-level Rules ############################################################################### -objects = $(DL_FILE) +objects = $(DL_FILE) $(THISAPP)-configure-1.patch install : $(TARGET) @@ -58,6 +58,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) @rm -rf $(DIR_APP) $(DIR_SRC)/binutils-build && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE) -mkdir -v $(DIR_SRC)/binutils-build + cd $(DIR_APP) && patch -Np1 -i $(DIR_PATCHES)/$(THISAPP)-configure-1.patch ifeq "$(PASS)" "1" cd $(DIR_SRC)/binutils-build && CC="gcc -B/usr/bin/" ../$(THISAPP)/configure \