> >
> I don't think this is the right place to be using $INSTALL_ROOT. If I
> understand it correctly this path is supposed to be used only at
> runtime---at which time you are already inside $INSTALL_ROOT.
>
I always get confused about this but here's the default_build:
OPTS="$OPTS --build=${BUILD}";
[[ $CROSS_INSTALL == on ]] && OPTS="$OPTS --host=${HOST}";
/configure \
--prefix=${INSTALL_ROOT}/usr \
--sysconfdir=${INSTALL_ROOT}/etc \
--localstatedir=${INSTALL_ROOT}/var \
--mandir=${INSTALL_ROOT}/usr/share/man \
--infodir=${INSTALL_ROOT}/usr/share/info $OPTS &&
make