Repository: nifi-minifi-cpp
Updated Branches:
  refs/heads/master 088e1be7c -> 43bd2270c


MINIFICPP-346: Add raspi distro

This closes #222.

Approved by achristianson on GH.

Signed-off-by: Marc Parisi <[email protected]>


Project: http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/repo
Commit: http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/commit/43bd2270
Tree: http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/tree/43bd2270
Diff: http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/diff/43bd2270

Branch: refs/heads/master
Commit: 43bd2270c1e9734bab3c0d96292f1f667517a32d
Parents: 088e1be
Author: Marc Parisi <[email protected]>
Authored: Tue Dec 19 01:48:28 2017 +0000
Committer: Marc Parisi <[email protected]>
Committed: Tue Dec 19 10:11:16 2017 -0500

----------------------------------------------------------------------
 bootstrap.sh | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/43bd2270/bootstrap.sh
----------------------------------------------------------------------
diff --git a/bootstrap.sh b/bootstrap.sh
index e58756b..00830bb 100755
--- a/bootstrap.sh
+++ b/bootstrap.sh
@@ -115,6 +115,8 @@ OS_REVISION=`echo $EVR       | cut -d. -f3`
 
 if [[ "$OS" = "Darwin" ]]; then
   source darwin.sh
+elif [[ "$OS" = Rasp* ]]; then
+  source ubuntu.sh
 elif [[ "$OS" = Ubuntu* ]]; then
   source ubuntu.sh
 elif [[ "$OS" = Red* ]]; then
@@ -189,7 +191,8 @@ add_dependency GPS_ENABLED "gpsd"
 
 add_disabled_option KAFKA_ENABLED ${FALSE} "ENABLE_LIBRDKAFKA" "3.4.0"
 
-add_disabled_option BUSTACHE_ENABLED ${FALSE} "ENABLE_BUSTACHE"
+#add_disabled_option BUSTACHE_ENABLED ${FALSE} "ENABLE_BUSTACHE"
+#add_dependency BUSTACHE_ENABLED "boost"
 
 ## currently need to limit on certain platforms
 #add_disabled_option TENSORFLOW_ENABLED ${FALSE} "ENABLE_TENSORFLOW"
@@ -283,11 +286,6 @@ print_feature_status(){
 }
 
 
-       CLANG_VERSION=`clang --version | head -n 1 | awk '{print $4}'`
-         CLANG_MAJOR=`echo $CLANG_VERSION | cut -d. -f1`
-       CLANG_MINOR=`echo $CLANG_VERSION | cut -d. -f2`
-       CLANG_REVISION=`echo $CLANG_VERSION | cut -d. -f3`
-       
 ### parse the command line arguments
 
 while :; do

Reply via email to