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 Date: Wed, 18 Jun 2003 09:37:44 -0400 From: Christopher Faylor To: james lankton Cc: cygwin AT cygwin DOT com Subject: Re: a make invocation Message-ID: <20030618133744.GA8092@redhat.com> Reply-To: cygwin AT cygwin DOT com Mail-Followup-To: james lankton , cygwin AT cygwin DOT com References: <20030618084640 DOT 49642 DOT qmail AT web10704 DOT mail DOT yahoo DOT com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030618084640.49642.qmail@web10704.mail.yahoo.com> User-Agent: Mutt/1.4.1i Please check out the project web page for links to available information and ports: http://cygwin.com/ . If you don't see what you need there, then the cygwin mailing list is the best place to make observations or get questions answered. Information on the mailing list is available at the project web page. For your convenience, I've reset the Reply-To: address to point to the cygwin mailing list. I've also Cc'ed this reply there. See also: http://cygwin.com/problems.html and pay particular attention to this section: Shouldn't I just send email to straight to a cygwin developer or package maintainer? Isn't personal email more efficient than using a mailing list? or I don't want to bother the list with my problem. or I'm not really sure if this is a real problem and want to find out before I bother the list. On Wed, Jun 18, 2003 at 01:46:40AM -0700, james lankton wrote: >Hello Chris, >Sorry to bother you with this. >I just cannot seem to get the "make" command to >invoke in cygwin. Already asked a few times >at the dicussion board. Its a pretty simlple >answer I am sure. >I have MAKE_MODE set to unix. >Below is somrthing you posted a while ago >but I am wondering if it might help me. > >James > > > >Index: main.c >=================================================================== >RCS file: /cvs/cvsfiles/devo/make/main.c,v >retrieving revision 1.47 >diff -u -p -r1.47 main.c >--- main.c 2001/06/26 19:12:04 1.47 >+++ main.c 2001/11/16 03:20:03 >@@ -870,11 +870,10 @@ int main (int argc, char ** argv) > char *make_mode_env; > > /* Read the environment variable MAKE_MODE */ >- /* If it's "UNIX", set unixy_shell to 1. If it's "WIN32" or >- anything else, stay with the default of 0. */ >+ /* If it's not "UNIX", set unixy_shell to 0. */ > make_mode_env = getenv ("MAKE_MODE"); >- if (make_mode_env && strcaseequ (make_mode_env, "UNIX")) >- unixy_shell = 1; >+ if (make_mode_env && !strcaseequ (make_mode_env, "UNIX")) >+ unixy_shell = 0; > } > #endif /* __CYGWIN__ */ > > > >--------------------------------- >Do you Yahoo!? >SBC Yahoo! DSL - Now only $29.95 per month! -- 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/