public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* Re: make 3.79.1-4 'make: /bin/sh.exe: Command not found' when run ning without sh.exe
  2001-11-11  8:26 make 3.79.1-4 'make: /bin/sh.exe: Command not found' when run ning without sh.exe Craig Hackney
@ 2001-11-11  8:26 ` Christopher Faylor
  0 siblings, 0 replies; 6+ messages in thread
From: Christopher Faylor @ 2001-11-11  8:26 UTC (permalink / raw)
  To: Craig Hackney; +Cc: cygwin

I was hoping that you could verify that it works for you before I make a
new release.

cgf

On Fri, Nov 16, 2001 at 12:47:52PM -0800, Craig Hackney wrote:
>
>	The patch below looks good.
>
>	Thanks,
>
>-----Original Message-----
>From: Christopher Faylor [mailto:cgf@redhat.com]
>Sent: Friday, November 16, 2001 12:01 PM
>To: cygwin@cygwin.com
>Cc: craig@triscend.com
>Subject: Re: make 3.79.1-4 'make: /bin/sh.exe: Command not found' when
>running without sh.exe
>
>
>Trying again, cc'ing the original sender.
>
>cgf
>
>On Thu, Nov 15, 2001 at 10:30:54PM -0500, Christopher Faylor wrote:
>>On Thu, Nov 15, 2001 at 07:00:13PM -0800, Craig Hackney wrote:
>>>
>>>	There appears to be a problem with this version of make please
>>>	see below.
>>
>>Thanks for the analysis.
>>
>>The patch below should fix this, right?
>>
>>cgf
>
>2001-11-15  Christopher Faylor  <cgf@redhat.com>
>
>	* main.c (main): Invert sense of test to ensure that unixy_shell is
>set
>	to zero if MAKE_MODE is not set to UNIX.
>
>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__ */
>
>--
>Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
>Bug reporting:         http://cygwin.com/bugs.html
>Documentation:         http://cygwin.com/docs.html
>FAQ:                   http://cygwin.com/faq/

-- 
cgf@redhat.com                        Red Hat, Inc.
http://sources.redhat.com/            http://www.redhat.com/

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 6+ messages in thread

* RE: make 3.79.1-4 'make: /bin/sh.exe: Command not found' when run ning without sh.exe
@ 2001-11-11  8:26 Craig Hackney
  2001-11-11  8:26 ` Christopher Faylor
  0 siblings, 1 reply; 6+ messages in thread
From: Craig Hackney @ 2001-11-11  8:26 UTC (permalink / raw)
  To: 'cygwin@cygwin.com'; +Cc: Craig Hackney


	The patch below looks good.

	Thanks,

-----Original Message-----
From: Christopher Faylor [mailto:cgf@redhat.com]
Sent: Friday, November 16, 2001 12:01 PM
To: cygwin@cygwin.com
Cc: craig@triscend.com
Subject: Re: make 3.79.1-4 'make: /bin/sh.exe: Command not found' when
running without sh.exe


Trying again, cc'ing the original sender.

cgf

On Thu, Nov 15, 2001 at 10:30:54PM -0500, Christopher Faylor wrote:
>On Thu, Nov 15, 2001 at 07:00:13PM -0800, Craig Hackney wrote:
>>
>>	There appears to be a problem with this version of make please
>>	see below.
>
>Thanks for the analysis.
>
>The patch below should fix this, right?
>
>cgf

2001-11-15  Christopher Faylor  <cgf@redhat.com>

	* main.c (main): Invert sense of test to ensure that unixy_shell is
set
	to zero if MAKE_MODE is not set to UNIX.

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__ */

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 6+ messages in thread

* RE: make 3.79.1-4 'make: /bin/sh.exe: Command not found' when run ning without sh.exe
@ 2001-11-11 17:22 Craig Hackney
  0 siblings, 0 replies; 6+ messages in thread
From: Craig Hackney @ 2001-11-11 17:22 UTC (permalink / raw)
  To: 'cygwin@cygwin.com'; +Cc: Craig Hackney


	That gets me further but I still con not finish the configure
	for make. I have included the error that I am seeing below...

$ ./configure
loading cache ./config.cache
checking for a BSD compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking whether make sets ${MAKE}... yes
checking for working aclocal... found
checking for working autoconf... found
checking for working automake... found
checking for working autoheader... found
checking for working makeinfo... found
configure: error: can not run ./config.sub


-----Original Message-----
From: Christopher Faylor [mailto:cgf@redhat.com]
Sent: Saturday, November 17, 2001 1:45 PM
To: cygwin@cygwin.com
Cc: craig@triscend.com
Subject: Re: make 3.79.1-4 'make: /bin/sh.exe: Command not found' when
run ning without sh.exe


Hmm.  Are you not subscribed to cygwin@cygwin.com, possibly?

cgf

On Fri, Nov 16, 2001 at 04:17:15PM -0500, Christopher Faylor wrote:
>On Fri, Nov 16, 2001 at 01:11:13PM -0800, Craig Hackney wrote:
>>
>>	I would, but when I try to configure the make source code I get
>>	the following error.
>>
>>$ ./configure
>>creating cache ./config.cache
>>configure: error: can not find install-sh or install.sh in . ./.. ./../..
>>
>>	I tried building other things from source and it works fine.
>>
>>	Any ideas?
>
>Just create an empty install-sh.  As long as you're not installing you
>shouldn't need this.

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 6+ messages in thread

* RE: make 3.79.1-4 'make: /bin/sh.exe: Command not found' when run ning without sh.exe
@ 2001-11-11  8:26 Craig Hackney
  2001-11-11  8:26 ` Christopher Faylor
  0 siblings, 1 reply; 6+ messages in thread
From: Craig Hackney @ 2001-11-11  8:26 UTC (permalink / raw)
  To: 'cygwin@cygwin.com', Craig Hackney


	I would, but when I try to configure the make source code I get
	the following error.

$ ./configure
creating cache ./config.cache
configure: error: can not find install-sh or install.sh in . ./.. ./../..

	I tried building other things from source and it works fine.

	Any ideas?

	Thanks,

-----Original Message-----
From: Christopher Faylor [mailto:cygwin@cygwin.com]
Sent: Friday, November 16, 2001 12:58 PM
To: Craig Hackney
Cc: cygwin@cygwin.com
Subject: Re: make 3.79.1-4 'make: /bin/sh.exe: Command not found' when
run ning without sh.exe


I was hoping that you could verify that it works for you before I make a
new release.

cgf

On Fri, Nov 16, 2001 at 12:47:52PM -0800, Craig Hackney wrote:
>
>	The patch below looks good.
>
>	Thanks,
>
>-----Original Message-----
>From: Christopher Faylor [mailto:cgf@redhat.com]
>Sent: Friday, November 16, 2001 12:01 PM
>To: cygwin@cygwin.com
>Cc: craig@triscend.com
>Subject: Re: make 3.79.1-4 'make: /bin/sh.exe: Command not found' when
>running without sh.exe
>
>
>Trying again, cc'ing the original sender.
>
>cgf
>
>On Thu, Nov 15, 2001 at 10:30:54PM -0500, Christopher Faylor wrote:
>>On Thu, Nov 15, 2001 at 07:00:13PM -0800, Craig Hackney wrote:
>>>
>>>	There appears to be a problem with this version of make please
>>>	see below.
>>
>>Thanks for the analysis.
>>
>>The patch below should fix this, right?
>>
>>cgf
>
>2001-11-15  Christopher Faylor  <cgf@redhat.com>
>
>	* main.c (main): Invert sense of test to ensure that unixy_shell is
>set
>	to zero if MAKE_MODE is not set to UNIX.
>
>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__ */
>
>--
>Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
>Bug reporting:         http://cygwin.com/bugs.html
>Documentation:         http://cygwin.com/docs.html
>FAQ:                   http://cygwin.com/faq/

-- 
cgf@redhat.com                        Red Hat, Inc.
http://sources.redhat.com/            http://www.redhat.com/

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: make 3.79.1-4 'make: /bin/sh.exe: Command not found' when run ning without sh.exe
  2001-11-11  8:26 ` Christopher Faylor
@ 2001-11-11  8:26   ` Christopher Faylor
  0 siblings, 0 replies; 6+ messages in thread
From: Christopher Faylor @ 2001-11-11  8:26 UTC (permalink / raw)
  To: cygwin; +Cc: craig

Hmm.  Are you not subscribed to cygwin@cygwin.com, possibly?

cgf

On Fri, Nov 16, 2001 at 04:17:15PM -0500, Christopher Faylor wrote:
>On Fri, Nov 16, 2001 at 01:11:13PM -0800, Craig Hackney wrote:
>>
>>	I would, but when I try to configure the make source code I get
>>	the following error.
>>
>>$ ./configure
>>creating cache ./config.cache
>>configure: error: can not find install-sh or install.sh in . ./.. ./../..
>>
>>	I tried building other things from source and it works fine.
>>
>>	Any ideas?
>
>Just create an empty install-sh.  As long as you're not installing you
>shouldn't need this.

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: make 3.79.1-4 'make: /bin/sh.exe: Command not found' when run ning without sh.exe
  2001-11-11  8:26 Craig Hackney
@ 2001-11-11  8:26 ` Christopher Faylor
  2001-11-11  8:26   ` Christopher Faylor
  0 siblings, 1 reply; 6+ messages in thread
From: Christopher Faylor @ 2001-11-11  8:26 UTC (permalink / raw)
  To: cygwin

On Fri, Nov 16, 2001 at 01:11:13PM -0800, Craig Hackney wrote:
>
>	I would, but when I try to configure the make source code I get
>	the following error.
>
>$ ./configure
>creating cache ./config.cache
>configure: error: can not find install-sh or install.sh in . ./.. ./../..
>
>	I tried building other things from source and it works fine.
>
>	Any ideas?

Just create an empty install-sh.  As long as you're not installing you
shouldn't need this.

cgf

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2001-11-19 19:04 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-11-11  8:26 make 3.79.1-4 'make: /bin/sh.exe: Command not found' when run ning without sh.exe Craig Hackney
2001-11-11  8:26 ` Christopher Faylor
2001-11-11  8:26 Craig Hackney
2001-11-11  8:26 ` Christopher Faylor
2001-11-11  8:26   ` Christopher Faylor
2001-11-11 17:22 Craig Hackney

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).