Date: Wed, 1 Apr 1998 13:26:45 +0300 (IDT) From: Eli Zaretskii To: Bill Hogan cc: Bill Hogan , djgpp AT delorie DOT com Subject: Re: ./configure In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On Wed, 1 Apr 1998, Bill Hogan wrote: > AC_PATH_PROGS(MAKE_SHELL, sh.exe bash.exe zsh.exe ksh.exe) > if test -z "$MAKE_SHELL"; then > echo oops - no usable shell for make or me! Configure is exiting. > exit 1 > fi > ---------------------------- unquote ------------------------- > > etc, and used this to generate a new, djgpp-specific ./configure script. Changing "test -f" into "test -x" will have the same effect (except that you don't need to run Autoconf).