diff options
author | Jonathan Kew <jfkthame@googlemail.com> | 2006-12-12 13:09:22 +0000 |
---|---|---|
committer | Jonathan Kew <jfkthame@googlemail.com> | 2006-12-12 13:09:22 +0000 |
commit | 53920c0b50fc6fc5380385f4b50a9b12128487d1 (patch) | |
tree | a286de4b69cccc63549d4f5089801eda1d83ee0c /Build | |
parent | 841b188679aeb0370a90b8589995dc9e2eac9e29 (diff) |
dvipng info installation fix
git-svn-id: svn://tug.org/texlive/trunk@2699 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rw-r--r-- | Build/source/texk/dvipng/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/texk/dvipng/Makefile.in b/Build/source/texk/dvipng/Makefile.in index d374436a8eb..54d5dce6f7d 100644 --- a/Build/source/texk/dvipng/Makefile.in +++ b/Build/source/texk/dvipng/Makefile.in @@ -162,10 +162,10 @@ dvipng.1: dvipng.texi readme.texi install-docs: docs -$(MKINSTALLDIRS) $(DESTDIR)$(infodir) - for x in dvipng.info* ; do \ + for x in $(srcdir)/dvipng.info* ; do \ $(INSTALL_DATA) $$x $(DESTDIR)$(infodir) ; \ done - -$(INSTALL_INFO) --info-dir=$(DESTDIR)$(infodir) dvipng.info + -$(INSTALL_INFO) --info-dir=$(DESTDIR)$(infodir) $(srcdir)/dvipng.info -$(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man1 $(INSTALL_DATA) $(srcdir)/dvipng.1 $(DESTDIR)$(mandir)/man1 |