From: Ronald Oussoren Date: Sun, 9 Sep 2007 11:13:42 +0000 (+0000) Subject: Newer autoconf versions (from 2.60) want a 'datarootdir' definition in X-Git-Tag: v2.6a1~1326 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9bc2dd6321aed7b123b573733df5ae67ae1e07b7;p=thirdparty%2FPython%2Fcpython.git Newer autoconf versions (from 2.60) want a 'datarootdir' definition in (Make-)files that use mandir (and other data directory macros). This patch solves a warning during configure, specifically: ... config.status: creating Makefile.pre config.status: WARNING: ../Makefile.pre.in seems to ignore the --datarootdir setting ... See also: --- diff --git a/Makefile.pre.in b/Makefile.pre.in index 326d04b1985a..eaefb07c7f8d 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -82,6 +82,9 @@ prefix= @prefix@ # Install prefix for architecture-dependent files exec_prefix= @exec_prefix@ +# Install prefix for data files +datarootdir= @datarootdir@ + # Expanded directories BINDIR= $(exec_prefix)/bin LIBDIR= $(exec_prefix)/lib