summaryrefslogtreecommitdiff
path: root/net/kafka/files/patch-bin_kafka-run-class.sh
diff options
context:
space:
mode:
authorSteve Wills <swills@FreeBSD.org>2017-09-07 15:29:35 +0000
committerSteve Wills <swills@FreeBSD.org>2017-09-07 15:29:35 +0000
commit4534c43fd0b55e3e540260f85aef9d02f25df609 (patch)
tree315a68591f43caf250b273b1cb91a56275a8b9af /net/kafka/files/patch-bin_kafka-run-class.sh
parentRestore the maximum piece size of 2^30 introduced in r435987. (diff)
net/kafka: create port
Kafka is used for building real-time data pipelines and streaming apps. It is horizontally scalable, fault-tolerant, wicked fast, and runs in production in thousands of companies. WWW: https://kafka.apache.org/ PR: 220793 Submitted by: timp87@gmail.com
Diffstat (limited to 'net/kafka/files/patch-bin_kafka-run-class.sh')
-rw-r--r--net/kafka/files/patch-bin_kafka-run-class.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/net/kafka/files/patch-bin_kafka-run-class.sh b/net/kafka/files/patch-bin_kafka-run-class.sh
new file mode 100644
index 000000000000..a0d2cc8ed9dd
--- /dev/null
+++ b/net/kafka/files/patch-bin_kafka-run-class.sh
@@ -0,0 +1,16 @@
+--- bin/kafka-run-class.sh.orig 2017-07-14 16:36:53 UTC
++++ bin/kafka-run-class.sh
+@@ -125,12 +125,7 @@ do
+ done
+
+ # classpath addition for release
+-for file in "$base_dir"/libs/*;
+-do
+- if should_include_file "$file"; then
+- CLASSPATH="$CLASSPATH":"$file"
+- fi
+-done
++CLASSPATH="$CLASSPATH":"$base_dir"/libs/*
+
+ for file in "$base_dir"/core/build/libs/kafka_${SCALA_BINARY_VERSION}*.jar;
+ do