mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-03 10:04:32 +03:00
* configure.in: Expand $bindir and $datadir to show at the end.
Reported by Nerijus Baliunas <nerijus@users.sourceforge.net>
This commit is contained in:
parent
4cb62a4957
commit
2cdb88ccbf
@ -1,3 +1,8 @@
|
|||||||
|
2002-10-01 Pavel Roskin <proski@gnu.org>
|
||||||
|
|
||||||
|
* configure.in: Expand $bindir and $datadir to show at the end.
|
||||||
|
Reported by Nerijus Baliunas <nerijus@users.sourceforge.net>
|
||||||
|
|
||||||
2002-09-29 Pavel Roskin <proski@gnu.org>
|
2002-09-29 Pavel Roskin <proski@gnu.org>
|
||||||
|
|
||||||
* configure.in: Remove the argument from --with-gpm-mouse. The
|
* configure.in: Remove the argument from --with-gpm-mouse. The
|
||||||
|
16
configure.in
16
configure.in
@ -462,10 +462,10 @@ AC_ARG_WITH(edit,
|
|||||||
if test x$with_edit != xno; then
|
if test x$with_edit != xno; then
|
||||||
AC_DEFINE(USE_INTERNAL_EDIT, 1, [Define to enable internal editor])
|
AC_DEFINE(USE_INTERNAL_EDIT, 1, [Define to enable internal editor])
|
||||||
use_edit=yes
|
use_edit=yes
|
||||||
EDIT_msg="yes"
|
edit_msg="yes"
|
||||||
AC_MSG_NOTICE([using internal editor])
|
AC_MSG_NOTICE([using internal editor])
|
||||||
else
|
else
|
||||||
EDIT_msg="no"
|
edit_msg="no"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
@ -600,6 +600,13 @@ po/Makefile.in
|
|||||||
|
|
||||||
AC_OUTPUT
|
AC_OUTPUT
|
||||||
|
|
||||||
|
# Expand $bindir and $datadir to show the user.
|
||||||
|
# Two levels of expansion should be enough.
|
||||||
|
bindir_msg=`eval echo "$bindir"`
|
||||||
|
bindir_msg=`eval echo "$bindir_msg"`
|
||||||
|
datadir_msg=`eval echo "$datadir"`
|
||||||
|
datadir_msg=`eval echo "$datadir_msg"`
|
||||||
|
|
||||||
echo "
|
echo "
|
||||||
Configuration:
|
Configuration:
|
||||||
|
|
||||||
@ -613,6 +620,7 @@ Configuration:
|
|||||||
Mouse support: ${mouse_lib}
|
Mouse support: ${mouse_lib}
|
||||||
X11 events support: ${textmode_x11_support}
|
X11 events support: ${textmode_x11_support}
|
||||||
With subshell support: ${subshell}
|
With subshell support: ${subshell}
|
||||||
Internal editor: ${EDIT_msg}
|
Internal editor: ${edit_msg}
|
||||||
Install path: ${prefix}/bin, ${prefix}/lib/mc
|
Install path for binaries: ${bindir_msg}
|
||||||
|
Install path for data: ${datadir_msg}
|
||||||
"
|
"
|
||||||
|
Loading…
Reference in New Issue
Block a user