diff options
author | Nick Clifton <nickc@redhat.com> | 2005-06-16 09:46:10 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2005-06-16 09:46:10 +0000 |
commit | a82644e2258235ccedc467a096f5e71d809943f0 (patch) | |
tree | 984cc4c30796cd6ac00325b6cab2a189569bec0d /ld/emultempl/armelf.em | |
parent | cbee2975a9851cd73104d8292418970f77b034ee (diff) | |
download | gdb-a82644e2258235ccedc467a096f5e71d809943f0.zip gdb-a82644e2258235ccedc467a096f5e71d809943f0.tar.gz gdb-a82644e2258235ccedc467a096f5e71d809943f0.tar.bz2 |
Add quotes to avoid a null test expression.
Diffstat (limited to 'ld/emultempl/armelf.em')
-rw-r--r-- | ld/emultempl/armelf.em | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ld/emultempl/armelf.em b/ld/emultempl/armelf.em index e40033f..125f049 100644 --- a/ld/emultempl/armelf.em +++ b/ld/emultempl/armelf.em @@ -23,7 +23,7 @@ # This file is sourced from elf32.em, and defines extra arm-elf # specific routines. # -test -z $TARGET2_TYPE && TARGET2_TYPE="rel" +test -z "$TARGET2_TYPE" && TARGET2_TYPE="rel" cat >>e${EMULATION_NAME}.c <<EOF static char *thumb_entry_symbol = NULL; |