mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 20:36:50 +03:00
* autogen.sh: Use $srcdir/configure.mc instead of $srcdir/configure
if first one exists and is executable.
This commit is contained in:
parent
6bf01d1155
commit
241aac0cbe
@ -1,3 +1,8 @@
|
|||||||
|
2002-11-29 Andrew V. Samoilov <sav@bcs.zp.ua>
|
||||||
|
|
||||||
|
* autogen.sh: Use $srcdir/configure.mc instead of
|
||||||
|
$srcdir/configure if first one exists and is executable.
|
||||||
|
|
||||||
2002-11-28 Pavel Roskin <proski@gnu.org>
|
2002-11-28 Pavel Roskin <proski@gnu.org>
|
||||||
|
|
||||||
* configure.in: Determine which help translations user wants to
|
* configure.in: Determine which help translations user wants to
|
||||||
|
@ -93,4 +93,8 @@ test -f configure || \
|
|||||||
{ echo "autoconf failed to generate vfs/samba/configure" 2>&1; exit 1; }
|
{ echo "autoconf failed to generate vfs/samba/configure" 2>&1; exit 1; }
|
||||||
) || exit 1
|
) || exit 1
|
||||||
|
|
||||||
$srcdir/configure --cache-file=config.cache --enable-maintainer-mode "$@"
|
if test -x $srcdir/configure.mc; then
|
||||||
|
$srcdir/configure.mc "$@"
|
||||||
|
else
|
||||||
|
$srcdir/configure --cache-file=config.cache --enable-maintainer-mode "$@"
|
||||||
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user