docdir was previously being set to "${prefix}/share/doc/${PACKAGE_NAME}"
when it wasn't explicitely set on configuration using --docdir. Without
this appearing in the Makefile, some files silently get silently installed
directly into ${prefix}/share/doc instead within a fish subdirectory.

I also added datarootdir to fix an autoconf warning, since autoconf
normally would use it for the directory paths
(e.g. docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}). The autoconf
generated configure script has a hack to fix this, but states:
"FIXME: This hack should be removed a few years after 2.60."
---
 Makefile.in |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/Makefile.in b/Makefile.in
index f52b8a4..2f09833 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -31,6 +31,8 @@
 # hallucinations.
 #
 
+# Used by docdir
+PACKAGE_TARNAME = @PACKAGE_TARNAME@
 
 #
 # Programs
@@ -46,6 +48,7 @@ INSTALL:=...@install@
 
 prefix = @prefix@
 exec_prefix = @exec_prefix@
+datarootdir = @datarootdir@
 datadir = @datadir@
 bindir = @bindir@
 mandir = @mandir@
------------------------------------------------------------------------------
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2 & L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today
http://p.sf.net/sfu/msIE9-sfdev2dev
_______________________________________________
Fish-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/fish-users

Reply via email to