diff options
author | Filipe Brandenburger <filbranden@google.com> | 2015-06-03 07:33:06 -0700 |
---|---|---|
committer | Filipe Brandenburger <filbranden@google.com> | 2015-06-03 07:34:42 -0700 |
commit | 759b98c5682171e6d5bf4d71f6ff038ae0115956 (patch) | |
tree | 2fad115cd736d9efd9b9822b7dc6a999a0d80059 | |
parent | ea344aec104771c11b2008e54943d7c108ecb0d0 (diff) |
build-sys: Recommend --with-rootprefix=/ for split-usr
Since we started using AX_NORMALIZE_PATH, that is a valid supported
setup and is more explicit than --with-rootprefix= (empty) which is
actually currently broken.
Let's advocate for it in the ./configure suggestion from autogen.sh.
-rwxr-xr-x | autogen.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh index 3027f83153..2d4acdfef1 100755 --- a/autogen.sh +++ b/autogen.sh @@ -47,7 +47,7 @@ fi if [ ! -L /bin ]; then args="$args \ ---with-rootprefix= \ +--with-rootprefix=/ \ --with-rootlibdir=$(libdir /lib) \ " fi |