1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-13 13:18:06 +03:00

Move configure output details out of perl code.

(This used to be commit 7fe2d6666e)
This commit is contained in:
Jelmer Vernooij 2008-02-25 18:51:39 +01:00
parent 8e42aee98e
commit 3f6a915f2b
2 changed files with 9 additions and 9 deletions

View File

@ -99,13 +99,4 @@ $mkenv->write("data.mk");
summary::show($OUTPUT, \%config::config);
if ($shared_libs_used) {
print <<EOF;
To run binaries without installing, set the following environment variable:
$config::config{LIB_PATH_VAR}=$config::config{builddir}/bin/shared
EOF
}
print "To build Samba, run $config::config{MAKE}\n";
1;

View File

@ -226,3 +226,12 @@ AC_FOREACH([AC_Var], m4_defn([_AC_SUBST_VARS]), [
AC_Var = $AC_Var])
$MAKE_SETTINGS
CEOF
if test $USESHARED = true
then
echo "To run binaries without installing, set the following environment variable:"
echo "$ac_cv_LIB_PATH_VAR=$builddir/bin/shared"
fi
echo
echo "To build Samba, run $ac_cv_path_MAKE"