1
1

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

if first one exists and is executable.
Этот коммит содержится в:
Andrew V. Samoilov 2002-11-29 06:39:41 +00:00
родитель 6bf01d1155
Коммит 241aac0cbe
2 изменённых файлов: 10 добавлений и 1 удалений

Просмотреть файл

@ -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

Просмотреть файл

@ -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