From 15da72b273012385133ae43ad45239b22e6aae81 Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN\"" Date: Sat, 29 Jan 2011 00:57:02 +0100 Subject: comptools: add make-3.81 Since the advent of make-3.82, some packages now break due to changes in make-3.82, being stricter than 3.81 when interpreting the Makefiles. This has bugged us a bit too much so far, and I believe fixing all of them is a long road, while simply building make-3.81 is the easiest route for now. Of course, in the long term, packages will get fixed upstream, and we should back-port the fixes to old versions, and get rid of building make-3.81. In the meantime... Reported several times on the mailing list. Signed-off-by: "Yann E. MORIN" --- scripts/build/companion_tools/050-make.sh | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 scripts/build/companion_tools/050-make.sh (limited to 'scripts') diff --git a/scripts/build/companion_tools/050-make.sh b/scripts/build/companion_tools/050-make.sh new file mode 100644 index 00000000..fd9c288b --- /dev/null +++ b/scripts/build/companion_tools/050-make.sh @@ -0,0 +1,26 @@ +# Build script for make + +CT_MAKE_VERSION=3.81 + +do_companion_tools_make_get() { + CT_GetFile "make-${CT_MAKE_VERSION}" \ + {http,ftp}://ftp.gnu.org/gnu/make +} + +do_companion_tools_make_extract() { + CT_Extract "make-${CT_MAKE_VERSION}" + CT_Patch "make" "${CT_MAKE_VERSION}" +} + +do_companion_tools_make_build() { + CT_DoStep EXTRA "Installing make" + mkdir -p "${CT_BUILD_DIR}/build-make" + CT_Pushd "${CT_BUILD_DIR}/build-make" + + CT_DoExecLog CFG "${CT_SRC_DIR}/make-${CT_MAKE_VERSION}/configure" \ + --prefix="${CT_TOOLS_OVERIDE_DIR}" + CT_DoExecLog ALL make + CT_DoExecLog ALL make install + CT_Popd + CT_EndStep +} -- cgit v1.2.3