aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-x[-rw-r--r--]bootstrap3
-rwxr-xr-x[-rw-r--r--]configure-cmake6
-rwxr-xr-xpython/bro.py2
3 files changed, 8 insertions, 3 deletions
diff --git a/bootstrap b/bootstrap
index 1da6d60..d4325b2 100644..100755
--- a/bootstrap
+++ b/bootstrap
@@ -9,7 +9,8 @@ autoreconf --version >/dev/null 2>&1 || { echo >&2 "'autoconf' $REQUIRED"; exit
# -E is POSIX. -r is for GNU sed older than 4.2.
echo hello | sed -E s/hello/world/ >/dev/null 2>&1 && SED_ERE=-E || SED_ERE=-r
-# If libtool is not installed -> "error: Libtool library used but 'LIBTOOL' is undefined"
+# If libtool is not installed ->
+# "error: Libtool library used but 'LIBTOOL' is undefined"
if [ ! -e "./m4" ]; then
mkdir m4 2>/dev/null
diff --git a/configure-cmake b/configure-cmake
index 6dfb92c..929300b 100644..100755
--- a/configure-cmake
+++ b/configure-cmake
@@ -315,4 +315,8 @@ if [ "x${LDFLAGS}" != "x" ]; then
done
fi
-eval "${CMAKE_CMD}" "${TOP_SRCDIR}" -DCMAKE_BUILD_TYPE="${BUILD_TYPE}" -DCMAKE_INSTALL_PREFIX="${PREFIX}" -DCMAKE_INSTALL_LIBDIR="${LIBDIR}" ${CMAKE_ARGS}
+eval "${CMAKE_CMD}" "${TOP_SRCDIR}" \
+ -DCMAKE_BUILD_TYPE="${BUILD_TYPE}" \
+ -DCMAKE_INSTALL_PREFIX="${PREFIX}" \
+ -DCMAKE_INSTALL_LIBDIR="${LIBDIR}" \
+ ${CMAKE_ARGS}
diff --git a/python/bro.py b/python/bro.py
index 6d71549..b742fd7 100755
--- a/python/bro.py
+++ b/python/bro.py
@@ -3,9 +3,9 @@
from __future__ import print_function
import argparse
-import sys
import os
import platform
+import sys
import brotli