* autogen.sh: Use $srcdir/configure.mc instead of $srcdir/configure

if first one exists and is executable.
This commit is contained in:
Andrew V. Samoilov 2002-11-29 06:39:41 +00:00
parent 6bf01d1155
commit 241aac0cbe
2 changed files with 10 additions and 1 deletions

View File

@ -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>
* configure.in: Determine which help translations user wants to

View File

@ -93,4 +93,8 @@ test -f configure || \
{ echo "autoconf failed to generate vfs/samba/configure" 2>&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