mirror of
https://git.freebsd.org/ports.git
synced 2025-06-27 23:50:30 -04:00
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
16 lines
400 B
Bash
16 lines
400 B
Bash
--- 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
|