|
From: <dom...@us...> - 2020-12-15 19:55:29
|
Revision: 1056
http://sourceforge.net/p/fvwm-crystal/code/1056
Author: dominique_libre
Date: 2020-12-15 19:55:25 +0000 (Tue, 15 Dec 2020)
Log Message:
-----------
fvwm-crystal: make dash to be happy with the fvwm* and debug mode tests
Modified Paths:
--------------
ChangeLog
bin/fvwm-crystal
Modified: ChangeLog
===================================================================
--- ChangeLog 2020-12-13 15:16:57 UTC (rev 1055)
+++ ChangeLog 2020-12-15 19:55:25 UTC (rev 1056)
@@ -1,5 +1,8 @@
ChangeLog for FVWM-Crystal
+mardi 15 décembre 2020
+ bin/fvwm-crystal: make dash to be happy with the fvwm* and debug mode tests.
+
dimanche 13 décembre 2020
fvwm/preferences/Startup: use StartFunction with Test (Init) instead of
InitFunction; add alsamixer launcher.
Modified: bin/fvwm-crystal
===================================================================
--- bin/fvwm-crystal 2020-12-13 15:16:57 UTC (rev 1055)
+++ bin/fvwm-crystal 2020-12-15 19:55:25 UTC (rev 1056)
@@ -14,16 +14,16 @@
# We now have both fvwm and fvwm3. fvwm-crystal work with both of them.
# Use $FVWM_EXEC if set, fvwm3 if present, fvvwm otherwise:
-if [ "x${FVWM_EXEC}" == "x" ]; then
+if [ "x${FVWM_EXEC}" = "x" ]; then
for name in fvwm3 fvwm fvwm2; do
FVWM_EXEC=`which "${name}" 2>/dev/null`
- if (($? == 0)); then
+ if [ $? = 0 ]; then
break
fi
done
fi
FVWM_EXEC=`basename ${FVWM_EXEC}`
-if [ "x${FVWM_EXEC}" == "x" ]; then
+if [ "x${FVWM_EXEC}" = "x" ]; then
echo 'No fvwm, fvwm2 or fvwm3 executable found in $PATH.'
echo "Please adjust your PATH accordingly or install fvwm."
echo "If fvwm is installed in another location, you can provide it as:"
@@ -120,11 +120,11 @@
#echo "exec fvwm -f $configfile $@"
#exec fvwm -f $configfile $@
-if [ "x${FVWMCRYSTAL_DEBUG}" == "x" ]; then
+if [ "x${FVWMCRYSTAL_DEBUG}" = "x" ]; then
echo "Fvwm-Crystal starting using ${FVWM_EXEC}."
exec ${FVWM_EXEC} -f $configfile $@
else
- if [ "${FVWM_EXEC}" == "fvwm3" ]; then
+ if [ "${FVWM_EXEC}" = "fvwm3" ]; then
echo "Fvwm-Crystal starting using ${FVWM_EXEC} in debug mode, the log file is ${FVWM3_LOGFILE}."
exec ${FVWM_EXEC} -v -f $configfile $@
else
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|