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:
parent
662af6b653
commit
b7c050d006
2 changed files with 10 additions and 6 deletions
|
@ -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:
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue