summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Jacobowitz <drow@false.org>2005-05-17 19:47:17 +0000
committerDaniel Jacobowitz <drow@false.org>2005-05-17 19:47:17 +0000
commit10c6a00dab30ef6c0adf55955693ab715a492290 (patch)
treef4b2d25867de5ae22e621775bb2db28d3d016e43
parent39b2b727978f156e7b28dc21ec65fea57a98e892 (diff)
downloadbinutils-gdb-10c6a00dab30ef6c0adf55955693ab715a492290.tar.gz
* doc/Makefile.am (gasver.texi): Don't use $<.
* doc/Makefile.in: Regenerated.
-rw-r--r--gas/ChangeLog5
-rw-r--r--gas/doc/Makefile.am3
-rw-r--r--gas/doc/Makefile.in3
3 files changed, 9 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index 0a85308afd5..86282181bd1 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-02 Daniel Jacobowitz <dan@codesourcery.com>
* doc/Makefile.am (gasver.texi): Correct quoting.
diff --git a/gas/doc/Makefile.am b/gas/doc/Makefile.am
index 9646ef81761..8b623d845ed 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 09420df52e1..e1ebcc2ef62 100644
--- a/gas/doc/Makefile.in
+++ b/gas/doc/Makefile.in
@@ -581,7 +581,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)