diff options
author | Tim Schumacher <timschumi@gmx.de> | 2022-03-12 11:19:18 +0100 |
---|---|---|
committer | Gunnar Beutner <gunnar@beutner.name> | 2022-10-11 09:28:46 +0200 |
commit | a61a0a63c16c2abf231a4a1985860e14b8184b28 (patch) | |
tree | d92c86d63dc21b314d1f7f82cc2bb9462bd332fc /Toolchain/BuildIt.sh | |
parent | 0f2d5f91dc207190d60a5a1bee4ca1d19707e224 (diff) | |
download | serenity-a61a0a63c16c2abf231a4a1985860e14b8184b28.zip |
Toolchain: Force makeinfo to be a no-op
Neither are we changing any of our documentation files, nor do we need
any of the documentation that is likely being built.
With macOS potentially removing makeinfo from the default Xcode lineup,
SerenityOS not being able to install it at all currently due to a lack
of perl, and it otherwise just being a dependency that has to be
installed to make the build system happy, lets just stub it out.
Diffstat (limited to 'Toolchain/BuildIt.sh')
-rwxr-xr-x | Toolchain/BuildIt.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Toolchain/BuildIt.sh b/Toolchain/BuildIt.sh index 4c9be2884f..1ca6bbc747 100755 --- a/Toolchain/BuildIt.sh +++ b/Toolchain/BuildIt.sh @@ -355,6 +355,11 @@ pushd "$DIR/Build/$ARCH" pushd binutils echo "XXX configure binutils" + + # We don't need the documentation that is being built, so + # don't force people to install makeinfo just for that. + export ac_cv_prog_MAKEINFO=true + buildstep "binutils/configure" "$DIR"/Tarballs/$BINUTILS_NAME/configure --prefix="$PREFIX" \ --target="$TARGET" \ --with-sysroot="$SYSROOT" \ |