diff options
-rw-r--r-- | ld/ChangeLog | 6 | ||||
-rw-r--r-- | ld/Makefile.am | 1 | ||||
-rw-r--r-- | ld/Makefile.in | 1 |
3 files changed, 8 insertions, 0 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 8fd73db..42b1e62 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,9 @@ +2005-11-25 Jan Beulich <jbeulich@novell.com> + + * Makefile.am: Make configdoc.texi writeable before trying + to write to it. + * Makefile.in: Refresh. + 2005-11-24 Alan Modra <amodra@bigpond.net.au> * ldlang.c (lang_output_section_find_by_flags): Add match_type param. diff --git a/ld/Makefile.am b/ld/Makefile.am index bd6ca20..935f269 100644 --- a/ld/Makefile.am +++ b/ld/Makefile.am @@ -1653,6 +1653,7 @@ bootstrap: ld3$(EXEEXT) # Set DOCVER above to change. configdoc.texi: ${DOCVER}-doc.texi cp ${srcdir}/${DOCVER}-doc.texi ./configdoc.texi + chmod u+w ./configdoc.texi echo "@set top_srcdir $(top_srcdir)" >> ./configdoc.texi ldver.texi: $(srcdir)/../bfd/configure diff --git a/ld/Makefile.in b/ld/Makefile.in index f9bce2c..a45cf45 100644 --- a/ld/Makefile.in +++ b/ld/Makefile.in @@ -2446,6 +2446,7 @@ bootstrap: ld3$(EXEEXT) # Set DOCVER above to change. configdoc.texi: ${DOCVER}-doc.texi cp ${srcdir}/${DOCVER}-doc.texi ./configdoc.texi + chmod u+w ./configdoc.texi echo "@set top_srcdir $(top_srcdir)" >> ./configdoc.texi ldver.texi: $(srcdir)/../bfd/configure |