diff options
author | Daniel Jacobowitz <drow@false.org> | 2005-05-17 19:43:52 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2005-05-17 19:43:52 +0000 |
commit | 970c3dbce892feccbd6334ebc431a82b84934efd (patch) | |
tree | b51a3e5099f752e2af5273d481bfe9d8875d3971 /gas | |
parent | 6e1b59d2fd2fad783931cbe945cd8287aca3d958 (diff) | |
download | gdb-970c3dbce892feccbd6334ebc431a82b84934efd.zip gdb-970c3dbce892feccbd6334ebc431a82b84934efd.tar.gz gdb-970c3dbce892feccbd6334ebc431a82b84934efd.tar.bz2 |
binutils/
* doc/Makefile.am (config.texi): Don't use $<.
* doc/Makefile.in: Regenerated.
ld/
* Makefile.am (ldver.texi): Don't use $<.
* Makefile.in: Regenerated.
gas/
* doc/Makefile.am (gasver.texi): Don't use $<.
* doc/Makefile.in: Regenerated.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/doc/Makefile.am | 3 | ||||
-rw-r--r-- | gas/doc/Makefile.in | 3 |
3 files changed, 9 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 12f0505..ea056d4 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2005-05-17 Daniel Jacobowitz <dan@codesourcery.com> + + * doc/Makefile.am (gasver.texi): Don't use $<. + * doc/Makefile.in: Regenerated. + 2005-05-17 Nick Clifton <nickc@redhat.com> PR 876 diff --git a/gas/doc/Makefile.am b/gas/doc/Makefile.am index 9646ef8..8b623d8 100644 --- a/gas/doc/Makefile.am +++ b/gas/doc/Makefile.am @@ -60,7 +60,8 @@ CPU_DOCS = \ gasver.texi: $(srcdir)/../../bfd/configure rm -f $@ - eval `grep '^ *VERSION=' $<`; echo "@set VERSION $$VERSION" > $@ + eval `grep '^ *VERSION=' $(srcdir)/../../bfd/configure`; \ + echo "@set VERSION $$VERSION" > $@ $(srcdir)/as.info: $(srcdir)/as.texinfo asconfig.texi gasver.texi $(CPU_DOCS) as.dvi: $(srcdir)/as.texinfo asconfig.texi gasver.texi $(CPU_DOCS) diff --git a/gas/doc/Makefile.in b/gas/doc/Makefile.in index db9c95e..f999e08 100644 --- a/gas/doc/Makefile.in +++ b/gas/doc/Makefile.in @@ -582,7 +582,8 @@ asconfig.texi: $(CONFIG).texi gasver.texi: $(srcdir)/../../bfd/configure rm -f $@ - eval `grep '^ *VERSION=' $<`; echo "@set VERSION $$VERSION" > $@ + eval `grep '^ *VERSION=' $(srcdir)/../../bfd/configure`; \ + echo "@set VERSION $$VERSION" > $@ $(srcdir)/as.info: $(srcdir)/as.texinfo asconfig.texi gasver.texi $(CPU_DOCS) as.dvi: $(srcdir)/as.texinfo asconfig.texi gasver.texi $(CPU_DOCS) |