The conversion to autotools changed the default prefix to /usr. There's no reason to diverge. Distributions builds set prefix the /usr path and local builds are supposed to go to /usr/local .
Reference: https://bugzilla.kernel.org/show_bug.cgi?id=108571 Reported-by: Karl Richter <[email protected]> Signed-off-by: David Sterba <[email protected]> --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index c3a22d1315c7..c1140973d0d7 100644 --- a/configure.ac +++ b/configure.ac @@ -23,7 +23,7 @@ dnl the compiler (like AC_PROG_LIBTOOL) to avoid autoconf errors. AC_USE_SYSTEM_EXTENSIONS AC_CONFIG_SRCDIR([btrfs.c]) -AC_PREFIX_DEFAULT([/usr]) +AC_PREFIX_DEFAULT([/usr/local]) AC_PROG_CC AC_CANONICAL_HOST -- 2.6.2 -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
