We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 767d51d commit 2695438Copy full SHA for 2695438
tools/bootstrap-librdkafka.sh
@@ -35,11 +35,11 @@ curl -q -L "https://github.com/edenhill/librdkafka/archive/${VERSION}.tar.gz" |
35
./configure --clean
36
make clean
37
38
-if [[ "$OSTYPE" == "linux"* ]]; then
39
- MKL_OPTS="--disable-gssapi"
+if [[ $OSTYPE == "linux"* ]]; then
+ EXTRA_OPTS="--disable-gssapi"
40
fi
41
42
-./configure --install-deps --source-deps-only $MKL_OPTS --prefix="$INSTALLDIR"
+./configure --install-deps --source-deps-only $EXTRA_OPTS --prefix="$INSTALLDIR"
43
44
if [[ $REQUIRE_SSL == 1 ]]; then
45
grep '^#define WITH_SSL 1$' config.h || \
0 commit comments