From b360de0b47c1c01ae259654d56a8e00dc6bd80d3 Mon Sep 17 00:00:00 2001
From: Matthieu Schaller <schaller@strw.leidenuniv.nl>
Date: Mon, 29 Mar 2021 21:34:34 +0200
Subject: [PATCH] Slightly better messages in the autogen.sh regarding the
 creation of temporary files for the submodule

---
 autogen.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/autogen.sh b/autogen.sh
index 24a2c0333d..d95a758150 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -6,7 +6,7 @@
 if [ -f csds/Makefile.am ]; then
     fake_sub=0
 else
-    echo Creating temporary (fake) submodule files
+    echo "Creating temporary (fake) submodule files"
     fake_sub=1
     mkdir csds/src csds/tests
     touch csds/Makefile.am csds/src/Makefile.am csds/tests/Makefile.am
@@ -15,7 +15,7 @@ fi
 autoreconf --install --symlink
 
 if [ $fake_sub -eq 1 ]; then
-    echo Removing fake submodule files
+    echo "Removing fake submodule files"
     rm -rf csds/src csds/tests
     rm csds/Makefile.am csds/Makefile.in
 fi
-- 
GitLab