From 410a617a52530e1a76cd9a878ce6c82d7431b3f0 Mon Sep 17 00:00:00 2001
From: Marko Lindqvist <cazfi74@gmail.com>
Date: Sat, 2 Nov 2024 09:08:15 +0200
Subject: [PATCH 58/58] revision_describer.bash: Remove x-prefixing

See RM #1053

Signed-off-by: Marko Lindqvist <cazfi74@gmail.com>
---
 scripts/revision_describer.bash | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/scripts/revision_describer.bash b/scripts/revision_describer.bash
index ac8661d221..c9ad153ae2 100755
--- a/scripts/revision_describer.bash
+++ b/scripts/revision_describer.bash
@@ -13,13 +13,13 @@
 #
 #***********************************************************************/
 
-if test x$1 = x ; then
+if test "$1" = "" ; then
   REVISION="HEAD"
 else
-  REVISION=$1
+  REVISION="$1"
 fi
 
-if test x$2 = x ; then
+if test "$2" = "" ; then
   ONLY_CARE_ABOUT=
 else
   ONLY_CARE_ABOUT="-- $2"
@@ -39,5 +39,5 @@ FORMAT="${FORMAT}%w(0, 2, 2)%B"
 
 git log \
  --format="${FORMAT}" \
- ${REVISION} -1 \
+ "${REVISION}" -1 \
  ${ONLY_CARE_ABOUT}
-- 
2.45.2

