Branch: Tag:

2006-06-17

2006-06-17 10:41:27 by Martin Stjernholm <mast@lysator.liu.se>

Do not restart the configure with bash if already running bash. This
avoids that the --no-recursion flag from config.status gets lost since
it's not part of $ac_configure_args.

Rev: src/configure.in:1.952

1: - AC_REVISION("$Id: configure.in,v 1.951 2006/06/16 11:29:06 grubba Exp $") + AC_REVISION("$Id: configure.in,v 1.952 2006/06/17 10:41:27 mast Exp $")   AC_INIT(interpret.c)   AC_CONFIG_HEADER(machine.h)   
54:   # since bash is usually several orders of magnitude faster   # on machines that have a real /bin/sh.   # Some OS's also have a seriously broken /bin/sh (eg NetBSD). - if test "x$CONFIG_SHELL" = "x"; then + if test "x$CONFIG_SHELL" = "x" -a "x$BASH" = x; then    AC_PATH_PROG(bash_prog, bash, no)    if test "x$ac_cv_path_bash_prog" = "xno"; then :; else    AC_MSG_CHECKING([if $ac_cv_path_bash_prog works])
2225:    # MinGW system.    cat <<\EOF   #!/bin/sh - # Automatically generated by $Id: configure.in,v 1.951 2006/06/16 11:29:06 grubba Exp $. + # Automatically generated by $Id: configure.in,v 1.952 2006/06/17 10:41:27 mast Exp $.   # MinGW-version. Do NOT edit.   posix_name="`cat`"   posix_prefix="/"
2263:    # Native POSIX system.    cat <<\EOF   #!/bin/sh - # Automatically generated by $Id: configure.in,v 1.951 2006/06/16 11:29:06 grubba Exp $. + # Automatically generated by $Id: configure.in,v 1.952 2006/06/17 10:41:27 mast Exp $.   # POSIX-version. Do NOT edit.   cat   EOF
2272:    # rntcl-style    cat <<\EOF   #!/bin/sh - # Automatically generated by $Id: configure.in,v 1.951 2006/06/16 11:29:06 grubba Exp $. + # Automatically generated by $Id: configure.in,v 1.952 2006/06/17 10:41:27 mast Exp $.   # RNTCL-version. Do NOT edit.   sed -e "$PIKE_PATH_TRANSLATE"   EOF