* cygrun.c (main): Fix setting of CYGWIN environment variable.

* Makefile.in: Remove linking of unnecessary libraries.
This commit is contained in:
Christopher Faylor
2002-09-25 13:53:46 +00:00
parent 38c77307c5
commit 961973e7a4
2 changed files with 11 additions and 2 deletions

View File

@@ -36,10 +36,13 @@ main (int argc, char **argv)
{
char buf[4096];
if (!p)
p[0] = '\0';
{
p = buf;
p[0] = '\0';
}
else
{
strcat (buf, p);
strcpy (buf, p);
strcat (buf, " ");
}
strcat(buf, "ntsec");