don't use '==', and improve portability with empty strings

2007-08-01  Jens Granseuer  <jensgr@gmx.net>

	* gnome-at-commandline.in.in: don't use '==', and improve
	portability with empty strings

svn path=/trunk/; revision=7945
This commit is contained in:
Jens Granseuer 2007-08-01 19:28:13 +00:00 committed by Jens Granseuer
parent 662af6b653
commit b7c050d006
2 changed files with 10 additions and 6 deletions

View file

@ -1,3 +1,8 @@
2007-08-01 Jens Granseuer <jensgr@gmx.net>
* gnome-at-commandline.in.in: don't use '==', and improve
portability with empty strings
2007-07-29 Jens Granseuer <jensgr@gmx.net>
* Makefile.am:

View file

@ -51,7 +51,7 @@ run_at() {
if [ ! -z "$AUTOSTART" ]; then
# assuming ran from /usr/share/gnome/autostart
if [ "$STARTUP" == "true" ]; then
if [ "x$STARTUP" = "xtrue" ]; then
# gconf indicated requested autostart
($CMDLINE &)
fi
@ -99,4 +99,3 @@ for I in $AT ; do
done
#EOF