branch: development
commit e352c92fd80a39e16403266a93137de9413a4ae5
Author: Ileana Dumitrescu <ileanadumitresc...@gmail.com>
AuthorDate: Thu Feb 27 18:47:41 2025 +0200

    libtool-next-version.in: Make syntactical changes
---
 libtool-next-version.in | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/libtool-next-version.in b/libtool-next-version.in
index 52b84844..36b02fb9 100644
--- a/libtool-next-version.in
+++ b/libtool-next-version.in
@@ -74,7 +74,7 @@ q
 }'
   copyright_year=`sed -n -e "$sed_extract_copyright_year" < "$0"`
   echo "libtool-next-version (GNU @PACKAGE@) @VERSION@"
-  echo "Copyright (C) ${copyright_year} Free Software Foundation, Inc.
+  echo "Copyright (C) $copyright_year Free Software Foundation, Inc.
 License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>.
 This is free software: you are free to change and redistribute it.
 There is NO WARRANTY, to the extent permitted by law."
@@ -139,7 +139,7 @@ func_read_yesno ()
 
 # Command-line option processing.
 while test $# -gt 0; do
-  case "$1" in
+  case $1 in
     --help | --hel | --he | --h )
       func_usage
       exit 0 ;;
@@ -221,7 +221,7 @@ else
   echo "Please answer yes or no (probably yes)."
 fi
 func_read_yesno
-if test "$ans" = yes; then
+if test yes = "$ans"; then
 
   revision=`expr $revision + 1`
 
@@ -239,7 +239,7 @@ if test "$ans" = yes; then
   fi
   func_read_yesno
 
-  if test "$ans" = yes; then
+  if test yes = "$ans"; then
 
     current=`expr $current + 1`
     revision=0
@@ -256,7 +256,7 @@ if test "$ans" = yes; then
     echo "Please answer yes or no."
     func_read_yesno
 
-    if test "$ans" = yes; then
+    if test yes = "$ans"; then
 
       current=`expr $current + 1`
       revision=0
@@ -278,7 +278,7 @@ if test "$ans" = yes; then
       fi
       func_read_yesno
 
-      if test "$ans" = yes; then
+      if test yes = "$ans"; then
 
         current=`expr $current + 1`
         revision=0

Reply via email to