* scripttempl/elfmips.sc: Quote test -z argument.

This commit is contained in:
Ian Lance Taylor 1996-05-29 20:10:22 +00:00
parent 80483b240f
commit 90557a6aea
2 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,7 @@
Wed May 29 13:13:35 1996 Ian Lance Taylor <ian@cygnus.com>
* scripttempl/elfmips.sc: Quote test -z argument.
* ld.texinfo: Clarify the CONSTRUCTORS command.
Thu May 23 16:07:44 1996 Ian Lance Taylor <ian@cygnus.com>

View File

@ -33,9 +33,9 @@ fi
# if this is for an embedded system, don't add SIZEOF_HEADERS.
if [ -z "$EMBEDDED" ]; then
test -z ${TEXT_BASE_ADDRESS} && TEXT_BASE_ADDRESS="${TEXT_START_ADDR} + SIZEOF_HEADERS"
test -z "${TEXT_BASE_ADDRESS}" && TEXT_BASE_ADDRESS="${TEXT_START_ADDR} + SIZEOF_HEADERS"
else
test -z ${TEXT_BASE_ADDRESS} && TEXT_BASE_ADDRESS="${TEXT_START_ADDR}"
test -z "${TEXT_BASE_ADDRESS}" && TEXT_BASE_ADDRESS="${TEXT_START_ADDR}"
fi
test -z "${BIG_OUTPUT_FORMAT}" && BIG_OUTPUT_FORMAT=${OUTPUT_FORMAT}