diff options
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rwxr-xr-x | gdb/observer.sh | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 718aa40..db3e474 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2005-05-16 Mark Kettenis <kettenis@gnu.org> + + * observer.sh: Quote $DJGPP. + 2005-05-15 Daniel Jacobowitz <dan@codesourcery.com> * Makefile.in (.y.c): Update ylwrap invocation. diff --git a/gdb/observer.sh b/gdb/observer.sh index 92ca1b5..4c235ea 100755 --- a/gdb/observer.sh +++ b/gdb/observer.sh @@ -61,7 +61,7 @@ esac # We are about to set IFS=:, so DOS-style file names with a drive # letter and a colon will be in trouble. -if test -n $DJGPP +if test -n "$DJGPP" then texi=`echo $texi | sed -e 's,^\([a-zA-Z]\):/,/dev/\1/,'` fi |