Skip to content

Commit

Permalink
* autogen.sh: Use $srcdir/configure.mc instead of $srcdir/configure
Browse files Browse the repository at this point in the history
if first one exists and is executable.
  • Loading branch information
Andrew V. Samoilov committed Nov 29, 2002
1 parent 6bf01d1 commit 241aac0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2002-11-29 Andrew V. Samoilov <[email protected]>

* autogen.sh: Use $srcdir/configure.mc instead of
$srcdir/configure if first one exists and is executable.

2002-11-28 Pavel Roskin <[email protected]>

* configure.in: Determine which help translations user wants to
Expand Down
6 changes: 5 additions & 1 deletion autogen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 241aac0

Please sign in to comment.