From: Christopher Faylor Date: Mon, 1 May 2000 15:05:54 +0000 (+0000) Subject: * setup.c (do_start_menu): Don't concatenate paths to already built paths. X-Git-Tag: cygwin-1_1_1~6 X-Git-Url: https://cygwin.com/git/?a=commitdiff_plain;h=460cf7b6950e6b07f934921d1b46cf4f5450ea6f;p=cygwin-apps%2Fsetup.git * setup.c (do_start_menu): Don't concatenate paths to already built paths. --- diff --git a/ChangeLog b/ChangeLog index c453e27c..e797e38a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Mon May 1 11:05:07 2000 Christopher Faylor + + * setup.c (do_start_menu): Don't concatenate paths to already built + paths. + Sun Apr 30 22:37:34 2000 Christopher Faylor * path.c (exit_cygpath): Wait for subprocess to exit before returning. diff --git a/setup.c b/setup.c index 620530f8..9150749f 100644 --- a/setup.c +++ b/setup.c @@ -1105,7 +1105,7 @@ do_start_menu (const char *root) fprintf (batch, "@echo off\n" "SET MAKE_MODE=unix\n" - "SET PATH=%s\\bin;%s\\usr\\local\\bin;%%PATH%%\n" + "SET PATH=%s;%s;%%PATH%%\n" "bash\n", bindir, locbindir); fclose (batch); xfree (bindir);