ref: d1d3dc0235c1300c16cd2ad0438ea234f4090a42
parent: 7f8f0c1c70595f65900424a75ec668f68d2f249d
author: Werner Lemberg <[email protected]>
date: Thu Sep 2 18:12:07 EDT 2021
autogen.sh: Make it work with old Solaris 10 shell.
--- a/autogen.sh
+++ b/autogen.sh
@@ -110,7 +110,10 @@
fi
}
-if test ! -f ./builds/unix/configure.raw; then
+# Solaris 10's shell doesn't like the `!` operator to negate the exit status.
+if test -f ./builds/unix/configure.raw; then
+ :
+else
echo "You must be in the same directory as \`autogen.sh'."
echo "Bootstrapping doesn't work if srcdir != builddir."
exit 1
@@ -182,7 +185,9 @@
DLG_INC_DIR=subprojects/dlg/include/dlg
DLG_SRC_DIR=subprojects/dlg/src/dlg
-if ! test -d "$DLG_INC_DIR"; then
+if test -d "$DLG_INC_DIR"; then
+ :
+else
echo "Checking out submodule in \`subprojects/dlg':"
git submodule init
git submodule update