diff options
author | Joseph Myers <joseph@codesourcery.com> | 2009-04-17 17:44:05 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2009-04-17 17:44:05 +0000 |
commit | 89a34d1b2cdfdb53540059dfa430e362fb5a27e5 (patch) | |
tree | 8a179e040d224bdfd99ee4f2dd88c53d302a75cb /gdb/Makefile.in | |
parent | a74ce742ff4d9d7f8c207852d8b51234f661b532 (diff) | |
download | gdb-89a34d1b2cdfdb53540059dfa430e362fb5a27e5.zip gdb-89a34d1b2cdfdb53540059dfa430e362fb5a27e5.tar.gz gdb-89a34d1b2cdfdb53540059dfa430e362fb5a27e5.tar.bz2 |
gdb:
2009-04-17 Carlos O'Donell <carlos@codesourcery.com>
* configure.ac: AC_SUBST datarootdir, docdir, htmldir, pdfdir.
* configure: Regenerate.
* Makefile.in: Set datarootdir, docdir, htmldir, and pdfdir from
configure substitutions.
(FLAGS_TO_PASS): Add datarootdir, docdir, and htmldir.
gdb/doc:
2009-04-17 Carlos O'Donell <carlos@codesourcery.com>
* Makefile.in: Set pdfdir and htmldir from configure
substitutions.
* configure.ac: AC_SUBST datarootdir, docdir, htmldir, pdfdir.
* configure: Regenerate.
readline:
2009-04-17 Carlos O'Donell <carlos@codesourcery.com>
* Makefile.in: Add html target. Add dummy install-html and
install-pdf targets.
sim:
2009-04-17 Carlos O'Donell <carlos@codesourcery.com>
* Makefile.in: Add dummy install-pdf, html, and
install-html targets.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 2b5e0ac..0170af4 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -40,8 +40,10 @@ man7dir = $(mandir)/man7 man8dir = $(mandir)/man8 man9dir = $(mandir)/man9 infodir = @infodir@ -pdfdir = $(prefix)/share/doc/gdb -htmldir = $(prefix)/html +datarootdir = @datarootdir@ +docdir = @docdir@ +htmldir = @htmldir@ +pdfdir = @pdfdir@ includedir = @includedir@ # This can be referenced by `LIBINTL' as computed by @@ -530,6 +532,9 @@ FLAGS_TO_PASS = \ "prefix=$(prefix)" \ "exec_prefix=$(exec_prefix)" \ "infodir=$(infodir)" \ + "datarootdir=$(datarootdir)" \ + "docdir=$(docdir)" \ + "htmldir=$(htmldir)" \ "pdfdir=$(pdfdir)" \ "libdir=$(libdir)" \ "mandir=$(mandir)" \ |