]> cygwin.com Git - cygwin-apps/setup.git/commitdiff
* setup.c (do_start_menu): Don't concatenate paths to already built paths.
authorChristopher Faylor <me@cgf.cx>
Mon, 1 May 2000 15:05:54 +0000 (15:05 +0000)
committerChristopher Faylor <me@cgf.cx>
Mon, 1 May 2000 15:05:54 +0000 (15:05 +0000)
ChangeLog
setup.c

index c453e27c58731b39e2ef8b63fa63fbc6f29d122d..e797e38a94255b9e0453ee1a635e6d963e6f142d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Mon May  1 11:05:07 2000  Christopher Faylor <cgf@cygnus.com>
+
+       * setup.c (do_start_menu): Don't concatenate paths to already built
+       paths.
+
 Sun Apr 30 22:37:34 2000  Christopher Faylor <cgf@cygnus.com>
 
        * path.c (exit_cygpath): Wait for subprocess to exit before returning.
diff --git a/setup.c b/setup.c
index 620530f8a9fd283f8f384939abbd9e283ff2c93b..9150749f505878ec14fc8ad692c7849a913a9389 100644 (file)
--- 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);
This page took 0.033251 seconds and 5 git commands to generate.