diff options
author | Luca <deri@ntop.org> | 2015-06-04 19:07:23 +0200 |
---|---|---|
committer | Luca <deri@ntop.org> | 2015-06-04 19:07:23 +0200 |
commit | 72b205f5c1bcf5cd90410b3c987d3440ef81593d (patch) | |
tree | 49378e3bcddecf7ea726fbf4ba24dffc4ad7e02e /configure.ac | |
parent | 4ce9dec54ecb18b7eb5b9123bfbfc6c57aa35c6b (diff) |
Fixed bug that caused configure to generate GIT version information containing spaces
Modified ndpiReader to include flow details in dumps (used for testing)
Rebuilt all test results to include flow details
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 2cb4ca3db..59a45f5f9 100644 --- a/configure.ac +++ b/configure.ac @@ -16,7 +16,7 @@ if test -d ".git"; then : # On CentOS 6 `git rev-list HEAD --count` does not work # # - GIT_NUM=`git log --pretty=oneline | wc -l` + GIT_NUM=`git log --pretty=oneline | wc -l | tr -d '[[:space:]]'` GIT_BRANCH=`git rev-parse --abbrev-ref HEAD` GIT_RELEASE="${PACKAGE_VERSION}-${GIT_BRANCH}-${GIT_NUM}-${GIT_TAG}" else |