* scripttempl/elfmips.sc: Quote test -z argument.
authorIan Lance Taylor <ian@airs.com>
Wed, 29 May 1996 20:10:22 +0000 (20:10 +0000)
committerIan Lance Taylor <ian@airs.com>
Wed, 29 May 1996 20:10:22 +0000 (20:10 +0000)
ld/ChangeLog
ld/scripttempl/elfmips.sc

index 03d819c098a215b46fe0ba5e501ed5be9f1dec3a..05a3116b959abd116b26abd6fc3e946fd23f7d41 100644 (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>
index cb5c54312f9436be91d20b9b18c05ce961f58b05..aed49a3354c980215eaabcb27705d8beb312bad4 100644 (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}