From 27ee9ebf6c545cc0620ff464edb1accce1a62057 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Fri, 10 Feb 2012 12:10:41 +0100 Subject: [PATCH] Support explicitly specifying --enable-split-usr. Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=45875 --- configure.ac | 17 ++++++++++++----- 1 files changed, 12 insertions(+), 5 deletions(-) diff --git a/configure.ac b/configure.ac index 0ad2b6a..23bff10 100644 --- a/configure.ac +++ b/configure.ac @@ -598,11 +598,18 @@ AC_ARG_WITH([pamlibdir], [], [with_pamlibdir=${with_rootlibdir}/security]) -have_split_usr=no -if test "x${ac_default_prefix}" != "x${with_rootprefix}" ; then +AC_ARG_ENABLE([split-usr], + AS_HELP_STRING([--enable-split-usr], [Assume that /bin, /sbin aren\'t symlinks into /usr]), + [], + [AS_IF([test "x${ac_default_prefix}" != "x${with_rootprefix}"], [ + enable_split_usr=yes + ], [ + enable_split_usr=no + ])]) + +AS_IF([test "x${enable_split_usr}" = "xyes"], [ AC_DEFINE(HAVE_SPLIT_USR, 1, [Define if /bin, /sbin aren't symlinks into /usr]) - have_split_usr=yes -fi +]) AC_SUBST([dbuspolicydir], [$with_dbuspolicydir]) AC_SUBST([dbussessionservicedir], [$with_dbussessionservicedir]) @@ -652,5 +659,5 @@ AC_MSG_RESULT([ D-Bus session dir: ${with_dbussessionservicedir} D-Bus system dir: ${with_dbussystemservicedir} D-Bus interfaces dir: ${with_dbusinterfacedir} - Split /usr: ${have_split_usr} + Split /usr: ${enable_split_usr} ]) -- 1.7.8.4