Correct spelling of "relocatable".
[deliverable/binutils-gdb.git] / ld / emultempl / m68kcoff.em
index 765447a258b76520794d8632e9815ba116358fad..e56c71fc3547aa08342efe7047eb847737739f86 100644 (file)
@@ -63,7 +63,7 @@ gld${EMULATION_NAME}_after_open ()
   bfd *abfd;
 
   if (! command_line.embedded_relocs
-      || link_info.relocateable)
+      || link_info.relocatable)
     return;
 
   for (abfd = link_info.input_bfds; abfd != NULL; abfd = abfd->link_next)
@@ -133,7 +133,7 @@ gld${EMULATION_NAME}_after_allocation ()
   bfd *abfd;
 
   if (! command_line.embedded_relocs
-      || link_info.relocateable)
+      || link_info.relocatable)
     return;
 
   for (abfd = link_info.input_bfds; abfd != NULL; abfd = abfd->link_next)
@@ -179,11 +179,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
@@ -200,9 +200,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";
This page took 0.024555 seconds and 4 git commands to generate.