diff options
author | teor <teor@torproject.org> | 2018-09-05 13:30:17 +1000 |
---|---|---|
committer | teor <teor@torproject.org> | 2018-09-05 14:02:46 +1000 |
commit | 35b0ac8d8419695f7b7e89d73355ba53b6d13204 (patch) | |
tree | 965fcd842d606ad48d9a9b2b6562c8b0c958848b | |
parent | 541b89b061455a167e73e6fc61e9df7ee82f4525 (diff) | |
download | tor-35b0ac8d8419695f7b7e89d73355ba53b6d13204.tar.gz tor-35b0ac8d8419695f7b7e89d73355ba53b6d13204.zip |
Travis: don't call echo with a --flag as the first argument
When we use echo in Travis, don't pass a --flag as the first argument.
Fixes bug 27418; bugfix on 0.3.4.7-rc.
-rw-r--r-- | .travis.yml | 2 | ||||
-rw-r--r-- | changes/bug27418 | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 8b8621007e..e3edf54f3b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -134,7 +134,7 @@ install: script: - ./autogen.sh - CONFIGURE_FLAGS="$ASCIIDOC_OPTIONS $COVERAGE_OPTIONS $HARDENING_OPTIONS $OPENSSL_OPTIONS --enable-fatal-warnings --disable-silent-rules" - - echo $CONFIGURE_FLAGS + - echo "Configure flags are $CONFIGURE_FLAGS" - ./configure $CONFIGURE_FLAGS ## We run `make check` because that's what https://jenkins.torproject.org does. - if [[ "$DISTCHECK" == "" ]]; then make check; fi diff --git a/changes/bug27418 b/changes/bug27418 new file mode 100644 index 0000000000..1d99497dc4 --- /dev/null +++ b/changes/bug27418 @@ -0,0 +1,3 @@ + o Minor bugfixes (continuous integration): + - When we use echo in Travis, don't pass a --flag as the first argument. + Fixes bug 27418; bugfix on 0.3.4.7-rc. |