diff options
author | Mark Kettenis <kettenis@gnu.org> | 2005-05-15 22:05:35 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2005-05-15 22:05:35 +0000 |
commit | f3e25dcb4c631425553d804aad54d24e661ff2ec (patch) | |
tree | 62966461d7c67466edc9e485ff361e31bee743ef /gdb | |
parent | e9edcedc8ee626bc900801549ba97f5af4e58968 (diff) | |
download | binutils-gdb-f3e25dcb4c631425553d804aad54d24e661ff2ec.tar.gz |
* observer.sh: Quote $DJGPP.
Diffstat (limited to 'gdb')
-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 718aa404072..db3e4749b0a 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 92ca1b5ed5b..4c235ea183e 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 |