]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
* genscripts.sh: Fix typo.
authorAlan Modra <amodra@gmail.com>
Wed, 28 Jan 2004 13:42:26 +0000 (13:42 +0000)
committerAlan Modra <amodra@gmail.com>
Wed, 28 Jan 2004 13:42:26 +0000 (13:42 +0000)
ld/ChangeLog
ld/genscripts.sh

index 78682f6cf0e84aa927b016f7b2db9405441e7751..fc652ed30bf5fcbaa1cb55cb518e57c84cd93833 100644 (file)
@@ -1,5 +1,7 @@
 2004-01-28  Alan Modra  <amodra@bigpond.net.au>
 
+       * genscripts.sh: Fix typo.
+
        * genscripts.sh: Apply $LIBPATH_SUFFIX to $tool_lib and $libdir too.
 
 2004-01-24  Jakub Jelinek  <jakub@redhat.com>
        * ldlang.c (lang_get_regions): Add extra parameter 'have_vma'
        which if true will prevent the LMA region being used as a
        replacement for a default VMA region.
-        (lang_leave_output_section_statement): Pass extra parameter.
-        (lang_leave_overlay): Likewise.
-        * ld.texinfo (Output Section LMA): Document that the LMA
+       (lang_leave_output_section_statement): Pass extra parameter.
+       (lang_leave_overlay): Likewise.
+       * ld.texinfo (Output Section LMA): Document that the LMA
        region can be set to the VMA region if no VMA has been set.
        * ldlang.h (struct lang_output_section_phdr_list): Create a
        typedef for this type.  Minor formatting fixes.
-       
+
 2004-01-13  Nick Clifton  <nickc@redhat.com>
 
        * ldlang.c (lang_size_sections_1): If dot is advanced, then
index 4069d68b27d003db847c859e591e43392ea1b0fb..01682036f33521df0d21ac19d6a7fe60bbf13a75 100755 (executable)
@@ -133,11 +133,11 @@ if [ "x${LIB_PATH}" = "x" ] && [ "x${USE_LIBPATH}" = xyes ] ; then
   if [ "x${use_sysroot}" != "xyes" ] ; then
     case " ${libs} " in
       *" ${libdir} "*) ;;
-      *) libs="${libdir} ${libs}"
+      *) libs="${libdir} ${libs}" ;;
     esac
     case " ${libs} " in
       *" ${tool_lib} "*) ;;
-      *) libs="${tool_lib} ${libs}"
+      *) libs="${tool_lib} ${libs}" ;;
     esac
   fi