Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Message-ID: <420899B1.409C48D5@dessent.net> Date: Tue, 08 Feb 2005 02:51:29 -0800 From: Brian Dessent Organization: My own little world... MIME-Version: 1.0 To: cygwin AT cygwin DOT com Subject: Re: Possible bug References: <36bf289b0502080211543584cb AT mail DOT gmail DOT com> <36bf289b050208023150f8774e AT mail DOT gmail DOT com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-IsSubscribed: yes Reply-To: cygwin AT cygwin DOT com Vijay Kiran Kamuju wrote: > code in tvtime boot strap thats failing > ----------------------------------------------------- > test -x "$AUTOHEADER" || > AUTOHEADER="autoheader`echo "$AUTOCONF" | sed 's/.*autoconf//'`" && > AUTOHEADER=`type -p "$AUTOHEADER"` || > { > echo `basename $0`: GNU Autoconf installed improperly 1>&2 && > exit 2; > } > > in tvtime bootstrap under cygwin im geting the message > > GNU Autoconf installed improperly > > but not in fedora That's a fault of the tvtime configure script then it seems. Under linux, sh is bash, but not under Cygwin (and many other nixes) where sh is the standard bourne shell. "type -p" is a bashism, you can't use it in a sh script. "sh" does not support any flags for the "type" builtin. Brian -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/