aboutsummaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2004-01-28 13:42:26 +0000
committerAlan Modra <amodra@gmail.com>2004-01-28 13:42:26 +0000
commit586196d51c6a6fe6861259d0d10fa85c78af5922 (patch)
tree07d2727b50ffe79af7061f3eed48703865bc0860 /ld
parent1dd3bf68768e9cbde1b69d64bdc0b8e9203e5f7d (diff)
downloadgdb-586196d51c6a6fe6861259d0d10fa85c78af5922.zip
gdb-586196d51c6a6fe6861259d0d10fa85c78af5922.tar.gz
gdb-586196d51c6a6fe6861259d0d10fa85c78af5922.tar.bz2
* genscripts.sh: Fix typo.
Diffstat (limited to 'ld')
-rw-r--r--ld/ChangeLog10
-rwxr-xr-xld/genscripts.sh4
2 files changed, 8 insertions, 6 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index 78682f6..fc652ed 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -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>
@@ -23,13 +25,13 @@
* 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
diff --git a/ld/genscripts.sh b/ld/genscripts.sh
index 4069d68..0168203 100755
--- a/ld/genscripts.sh
+++ b/ld/genscripts.sh
@@ -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