Hello community,

here is the log from the commit of package automake for openSUSE:Factory 
checked in at 2018-02-08 14:01:52
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/automake (Old)
 and      /work/SRC/openSUSE:Factory/.automake.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "automake"

Thu Feb  8 14:01:52 2018 rev:47 rq:573007 version:1.15.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/automake/automake-testsuite.changes      
2017-10-26 18:38:17.517006971 +0200
+++ /work/SRC/openSUSE:Factory/.automake.new/automake-testsuite.changes 
2018-02-08 14:01:51.161897858 +0100
@@ -1,0 +2,9 @@
+Sun Feb  4 23:06:25 UTC 2018 - m...@bernhard-voelker.de
+
+- Avoid bashisms in test-driver:
+  * 0001-correct-parameter-parsing-in-test-driver-script.patch
+  Use test's = operator instead of ==; use '[' instead of '[['.
+  This avoids 'make check' failures of distribution tarballs (built on
+  openSUSE) on platforms not supporting bashisms, e.g. NetBSD-7.1.
+
+-------------------------------------------------------------------
automake.changes: same change

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ automake-testsuite.spec ++++++
--- /var/tmp/diff_new_pack.GK6O3L/_old  2018-02-08 14:01:53.225801493 +0100
+++ /var/tmp/diff_new_pack.GK6O3L/_new  2018-02-08 14:01:53.225801493 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package automake-testsuite
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed

automake.spec: same change
++++++ 0001-correct-parameter-parsing-in-test-driver-script.patch ++++++
--- /var/tmp/diff_new_pack.GK6O3L/_old  2018-02-08 14:01:53.281798878 +0100
+++ /var/tmp/diff_new_pack.GK6O3L/_new  2018-02-08 14:01:53.281798878 +0100
@@ -23,7 +23,7 @@
 +while test $# -gt 1; do
 + arg=${1%=*}
 + val=${1#*=}
-+ if [ $arg == $val ]; then
++ if [ $arg = $val ]; then
 +   val=$2
 +   shift
 + fi
@@ -48,7 +48,7 @@
 -   *) break;;
    esac
 -  shift
-+  [[ $arg != $val ]] && shift
++  [ $arg != $val ] && shift
  done
  
  missing_opts=




Reply via email to