2
0
Fork 0
mirror of https://github.com/bazel-contrib/rules_foreign_cc synced 2024-11-28 08:43:26 +00:00

Explicitly turn off guile support in built version of GNU make (#814)

This commit is contained in:
James Sharpe 2021-11-18 23:30:30 +00:00 committed by GitHub
parent 83ab86e632
commit eaf1092368
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -30,7 +30,7 @@ def _make_tool_impl(ctx):
] ]
else: else:
script = [ script = [
"./configure --disable-dependency-tracking --prefix=$$INSTALLDIR$$", "./configure --without-guile --with-guile=no --disable-dependency-tracking --prefix=$$INSTALLDIR$$",
"./build.sh", "./build.sh",
"./make install", "./make install",
] ]