diff options
author | Jan Beulich <jbeulich@novell.com> | 2005-11-11 08:06:36 +0000 |
---|---|---|
committer | Jan Beulich <jbeulich@novell.com> | 2005-11-11 08:06:36 +0000 |
commit | 513ba3abf1e431d36aaf65bc71102c4350788424 (patch) | |
tree | de16c9315842ac9c3a139c57e33e8d1e20a27b95 /gas | |
parent | 629a14649b3af8656252fd53d62f87f35795b732 (diff) | |
download | gdb-513ba3abf1e431d36aaf65bc71102c4350788424.zip gdb-513ba3abf1e431d36aaf65bc71102c4350788424.tar.gz gdb-513ba3abf1e431d36aaf65bc71102c4350788424.tar.bz2 |
gas/
2005-11-11 Jan Beulich <jbeulich@novell.com>
* doc/Makefile.am: Make asconfig.texi writeable before trying
to write to it.
* doc/Makefile.in: Refresh.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 6 | ||||
-rw-r--r-- | gas/doc/Makefile.am | 3 | ||||
-rw-r--r-- | gas/doc/Makefile.in | 3 |
3 files changed, 10 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 20f43c5..dc73bd3 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,9 @@ +2005-11-11 Jan Beulich <jbeulich@novell.com> + + * doc/Makefile.am: Make asconfig.texi writeable before trying + to write to it. + * doc/Makefile.in: Refresh. + 2005-11-10 Jan Beulich <jbeulich@novell.com> * config/tc-i386.c (intel_e11): Don't special-case segment diff --git a/gas/doc/Makefile.am b/gas/doc/Makefile.am index a2785d4..4568c25 100644 --- a/gas/doc/Makefile.am +++ b/gas/doc/Makefile.am @@ -19,7 +19,8 @@ info_TEXINFOS = as.texinfo asconfig.texi: $(CONFIG).texi rm -f asconfig.texi - cp $(srcdir)/$(CONFIG).texi ./asconfig.texi + cp $(srcdir)/$(CONFIG).texi ./asconfig.texi + chmod u+w ./asconfig.texi echo "@set top_srcdir $(top_srcdir)" >> ./asconfig.texi CPU_DOCS = \ diff --git a/gas/doc/Makefile.in b/gas/doc/Makefile.in index 0fae527..2cc139a 100644 --- a/gas/doc/Makefile.in +++ b/gas/doc/Makefile.in @@ -577,7 +577,8 @@ uninstall-man: uninstall-man1 asconfig.texi: $(CONFIG).texi rm -f asconfig.texi - cp $(srcdir)/$(CONFIG).texi ./asconfig.texi + cp $(srcdir)/$(CONFIG).texi ./asconfig.texi + chmod u+w ./asconfig.texi echo "@set top_srcdir $(top_srcdir)" >> ./asconfig.texi gasver.texi: $(srcdir)/../../bfd/configure |