diff options
author | Joern Rennecke <joern.rennecke@embecosm.com> | 2006-08-10 13:23:15 +0000 |
---|---|---|
committer | Joern Rennecke <joern.rennecke@embecosm.com> | 2006-08-10 13:23:15 +0000 |
commit | 258ea6c8250004895de3d5d886bec2333eceffab (patch) | |
tree | b1c581e47561243737ea8a8bb36728791635e167 /binutils | |
parent | 089ec8f1acb48082ef846d0716bb5e6d42026956 (diff) | |
download | gdb-258ea6c8250004895de3d5d886bec2333eceffab.zip gdb-258ea6c8250004895de3d5d886bec2333eceffab.tar.gz gdb-258ea6c8250004895de3d5d886bec2333eceffab.tar.bz2 |
PR binutils/3017
* doc/Makefile.am: Use single quotes inside backquotes for
date command while generating config.texi.
* doc/Makefile.in: Regenerate.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 7 | ||||
-rw-r--r-- | binutils/doc/Makefile.am | 2 | ||||
-rw-r--r-- | binutils/doc/Makefile.in | 2 |
3 files changed, 9 insertions, 2 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 101da4c..bed6662 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,10 @@ +2006-08-10 J"orn Rennecke <joern.rennecke@st.com> + + PR binutils/3017 + * doc/Makefile.am: Use single quotes inside backquotes for + date command while generating config.texi. + * doc/Makefile.in: Regenerate. + 2006-08-08 Nick Clifton <nickc@redhat.com> PR binutils/2768 diff --git a/binutils/doc/Makefile.am b/binutils/doc/Makefile.am index 1d043e7..ca441c9 100644 --- a/binutils/doc/Makefile.am +++ b/binutils/doc/Makefile.am @@ -41,7 +41,7 @@ config.texi: $(srcdir)/../../bfd/configure $(binutils_TEXI) rm -f config.texi eval `grep '^ *VERSION=' $(srcdir)/../../bfd/configure`; \ echo "@set VERSION $$VERSION" > $@ - echo "@set UPDATED `date "+%B %Y"`" >> config.texi + echo "@set UPDATED `date '+%B %Y'`" >> config.texi # Man page generation from texinfo addr2line.1: $(binutils_TEXI) $(binutils_TEXINFOS) diff --git a/binutils/doc/Makefile.in b/binutils/doc/Makefile.in index 333a1af..e76b957 100644 --- a/binutils/doc/Makefile.in +++ b/binutils/doc/Makefile.in @@ -571,7 +571,7 @@ config.texi: $(srcdir)/../../bfd/configure $(binutils_TEXI) rm -f config.texi eval `grep '^ *VERSION=' $(srcdir)/../../bfd/configure`; \ echo "@set VERSION $$VERSION" > $@ - echo "@set UPDATED `date "+%B %Y"`" >> config.texi + echo "@set UPDATED `date '+%B %Y'`" >> config.texi # Man page generation from texinfo addr2line.1: $(binutils_TEXI) $(binutils_TEXINFOS) |