]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blobdiff - ld/emultempl/lnk960.em
Correct spelling of "relocatable".
[thirdparty/binutils-gdb.git] / ld / emultempl / lnk960.em
index ba0fe93b6f66d2ab13626898bb29b62df8034d93..56facaa0c1eccba20e870664e374ece54732d939 100644 (file)
@@ -184,7 +184,7 @@ lnk960_before_allocation ()
 static void
 lnk960_after_allocation ()
 {
-  if (!link_info.relocateable)
+  if (!link_info.relocatable)
     {
       lang_abs_symbol_at_end_of (".text", "_etext");
       lang_abs_symbol_at_end_of (".data", "_edata");
@@ -283,11 +283,11 @@ cat >>e${EMULATION_NAME}.c <<EOF
 {                           
   *isfile = 0;
 
-  if (link_info.relocateable && config.build_constructors)
+  if (link_info.relocatable && config.build_constructors)
     return
 EOF
 sed $sc ldscripts/${EMULATION_NAME}.xu                 >> e${EMULATION_NAME}.c
-echo '  ; else if (link_info.relocateable) return'     >> e${EMULATION_NAME}.c
+echo '  ; else if (link_info.relocatable) return'     >> e${EMULATION_NAME}.c
 sed $sc ldscripts/${EMULATION_NAME}.xr                 >> e${EMULATION_NAME}.c
 echo '  ; else if (!config.text_read_only) return'     >> e${EMULATION_NAME}.c
 sed $sc ldscripts/${EMULATION_NAME}.xbn                >> e${EMULATION_NAME}.c
@@ -304,9 +304,9 @@ cat >>e${EMULATION_NAME}.c <<EOF
 {                           
   *isfile = 1;
 
-  if (link_info.relocateable && config.build_constructors)
+  if (link_info.relocatable && config.build_constructors)
     return "ldscripts/${EMULATION_NAME}.xu";
-  else if (link_info.relocateable)
+  else if (link_info.relocatable)
     return "ldscripts/${EMULATION_NAME}.xr";
   else if (!config.text_read_only)
     return "ldscripts/${EMULATION_NAME}.xbn";