1
0
mirror of https://github.com/cahirwpz/amigaos-cross-toolchain synced 2026-03-21 03:43:17 +00:00

Texinfo 5.x breaks the build, so use older one.

This commit is contained in:
Krystian Bacławski
2014-01-02 15:29:47 +01:00
parent 8fd7d0f9cd
commit 129c9808f7
3 changed files with 14 additions and 1 deletions

View File

@ -143,6 +143,7 @@ function unpack_sources {
tar -xzf "${ARCHIVES}/${LIBAMIGA_SRC}"
popd
unpack_clean "${TEXINFO}" "${TEXINFO_SRC}"
unpack_clean "${BISON}" "${BISON_SRC}"
unpack_clean "${GAWK}" "${GAWK_SRC}"
@ -174,6 +175,13 @@ function build_tools {
pushd "${BUILD_DIR}"
mkdir_empty "${TEXINFO}"
pushd "${TEXINFO}"
"${SOURCES}/${TEXINFO}/configure" \
--prefix="${HOST_DIR}"
${MAKE} && make install
popd
mkdir_empty "${GAWK}"
pushd "${GAWK}"
"${SOURCES}/${GAWK}/configure" \