diff options
author | Daniel Jacobowitz <dan@debian.org> | 2005-05-17 19:43:52 +0000 |
---|---|---|
committer | Daniel Jacobowitz <dan@debian.org> | 2005-05-17 19:43:52 +0000 |
commit | 2dae550f38d32cbd066282b9a159979d2ec79fcd (patch) | |
tree | e8cf83168a460261930790f1841b247406b49632 /binutils | |
parent | 29746a0ac8f7be10a57762999b986248f6fd75db (diff) | |
download | binutils-redhat-2dae550f38d32cbd066282b9a159979d2ec79fcd.tar.gz |
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 'binutils')
-rw-r--r-- | binutils/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/doc/Makefile.am | 3 | ||||
-rw-r--r-- | binutils/doc/Makefile.in | 3 |
3 files changed, 9 insertions, 2 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 8ce3d5125d..7f410d323a 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2005-05-17 Daniel Jacobowitz <dan@codesourcery.com> + + * doc/Makefile.am (config.texi): Don't use $<. + * doc/Makefile.in: Regenerated. + 2005-05-15 Yitzchak Scott-Thoennes <sthoenna@efn.org> * deflex.l: Ignore CRs diff --git a/binutils/doc/Makefile.am b/binutils/doc/Makefile.am index 621f863842..edda4a0d9f 100644 --- a/binutils/doc/Makefile.am +++ b/binutils/doc/Makefile.am @@ -36,7 +36,8 @@ binutils_TEXI = $(srcdir)/binutils.texi config.texi: $(srcdir)/../../bfd/configure $(binutils_TEXI) rm -f config.texi - eval `grep '^ *VERSION=' $<`; echo "@set VERSION $$VERSION" > $@ + eval `grep '^ *VERSION=' $(srcdir)/../../bfd/configure`; \ + echo "@set VERSION $$VERSION" > $@ echo "@set UPDATED `date "+%B %Y"`" >> config.texi # Man page generation from texinfo diff --git a/binutils/doc/Makefile.in b/binutils/doc/Makefile.in index 38967613fe..03d945b0d3 100644 --- a/binutils/doc/Makefile.in +++ b/binutils/doc/Makefile.in @@ -567,7 +567,8 @@ uninstall-man: uninstall-man1 config.texi: $(srcdir)/../../bfd/configure $(binutils_TEXI) rm -f config.texi - eval `grep '^ *VERSION=' $<`; echo "@set VERSION $$VERSION" > $@ + eval `grep '^ *VERSION=' $(srcdir)/../../bfd/configure`; \ + echo "@set VERSION $$VERSION" > $@ echo "@set UPDATED `date "+%B %Y"`" >> config.texi # Man page generation from texinfo |