]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Travis: don't call echo with a --flag as the first argument
authorteor <teor@torproject.org>
Wed, 5 Sep 2018 03:30:17 +0000 (13:30 +1000)
committerteor <teor@torproject.org>
Wed, 5 Sep 2018 04:02:46 +0000 (14:02 +1000)
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.

.travis.yml
changes/bug27418 [new file with mode: 0644]

index 8b8621007e50673c7f94219beddca72029cd5231..e3edf54f3ba59dcf4cd7cc3d92c578ff6cc4e8b0 100644 (file)
@@ -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 (file)
index 0000000..1d99497
--- /dev/null
@@ -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.