]> granicus.if.org Git - postgresql/commitdiff
Use correct PATH separator for Cygwin in pg_regress.c.
authorAndrew Dunstan <andrew@dunslane.net>
Thu, 17 Mar 2011 04:22:03 +0000 (00:22 -0400)
committerAndrew Dunstan <andrew@dunslane.net>
Thu, 17 Mar 2011 04:22:03 +0000 (00:22 -0400)
This has been broken for years, and I'm not sure why it has not been
noticed before, but now a very modern Cygwin breaks on it, and the fix
is clearly correct. Backpatching to all live branches.

src/test/regress/pg_regress.c

index 3a6e34030949b9ab1a611c50172a36b5a9e6f5be..f386220eb2186bfea11224bb7208e02a5c5750e3 100644 (file)
@@ -796,8 +796,10 @@ initialize_environment(void)
                add_to_path("LD_LIBRARY_PATH", ':', libdir);
                add_to_path("DYLD_LIBRARY_PATH", ':', libdir);
                add_to_path("LIBPATH", ':', libdir);
-#if defined(WIN32) || defined(__CYGWIN__)
+#if defined(WIN32)
                add_to_path("PATH", ';', libdir);
+#elif defined(__CYGWIN__)
+               add_to_path("PATH", ':', libdir);
 #endif
        }
        else