diff options
author | Andrew Cagney <cagney@redhat.com> | 2000-03-24 07:27:24 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2000-03-24 07:27:24 +0000 |
commit | 9ef47d30e89a9ad7f47a366fd5ff25d317a1ecb3 (patch) | |
tree | a2cdfc04135a18c228bc73bfb5b3f2a392416b30 | |
parent | b83f3627128d8b6a05715aca89a9501b811dc506 (diff) | |
download | gdb-9ef47d30e89a9ad7f47a366fd5ff25d317a1ecb3.zip gdb-9ef47d30e89a9ad7f47a366fd5ff25d317a1ecb3.tar.gz gdb-9ef47d30e89a9ad7f47a366fd5ff25d317a1ecb3.tar.bz2 |
Create $(infodir) before trying to install info files.
-rw-r--r-- | gdb/doc/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/doc/Makefile.in | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 3d20b35..c5c361b 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,8 @@ +Fri Mar 24 17:56:48 2000 Andrew Cagney <cagney@b1.cygnus.com> + + * Makefile.in (install-info): Create $(infodir) before installing + files. + 2000-03-23 Fernando Nasser <fnasser@totem.to.cygnus.com> From David Whedon <dwhedon@gordian.com> diff --git a/gdb/doc/Makefile.in b/gdb/doc/Makefile.in index 46bb62d..df92d6d 100644 --- a/gdb/doc/Makefile.in +++ b/gdb/doc/Makefile.in @@ -103,6 +103,7 @@ all-doc: info dvi ps diststuff: info install-info: info + $(SHELL) $(srcdir)/../../mkinstalldirs $(infodir) for i in *.info* ; do \ $(INSTALL_DATA) $$i $(infodir)/$$i ; \ done |