Temporarily disable -fno-rtti to fix the build

Hitting a build issue with -fno-rtti that appears to be caused
by a Boost bug:
See https://github.com/chriskohlhoff/asio/issues/533

Disabling it for now.

Change-Id: I57ac7b35c20d9846713adcef4ce514ef40036063
Signed-off-by: Jason M. Bills <jason.m.bills@linux.intel.com>
diff --git a/hsbp-manager/CMakeLists.txt b/hsbp-manager/CMakeLists.txt
index 05febb5..da36e41 100644
--- a/hsbp-manager/CMakeLists.txt
+++ b/hsbp-manager/CMakeLists.txt
@@ -34,8 +34,11 @@
     -Wuseless-cast \
     -Wdouble-promotion \
     -Wformat=2 \
-    -fno-rtti"
+    "
 )
+# Temporarily disable rtti
+# See https://github.com/chriskohlhoff/asio/issues/533
+#    -fno-rtti
 
 option (YOCTO "Enable Building in Yocto" OFF)