Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit5773fac

Browse files
committed
Use correct PATH separator for Cygwin in pg_regress.c.
This has been broken for years, and I'm not sure why it has not beennoticed before, but now a very modern Cygwin breaks on it, and the fixis clearly correct. Backpatching to all live branches.
1 parent1b5a777 commit5773fac

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

‎src/test/regress/pg_regress.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -516,8 +516,10 @@ initialize_environment(void)
516516
add_to_path("LD_LIBRARY_PATH",':',libdir);
517517
add_to_path("DYLD_LIBRARY_PATH",':',libdir);
518518
add_to_path("LIBPATH",':',libdir);
519-
#if defined(WIN32)|| defined(__CYGWIN__)
519+
#if defined(WIN32)
520520
add_to_path("PATH",';',libdir);
521+
#elif defined(__CYGWIN__)
522+
add_to_path("PATH",':',libdir);
521523
#endif
522524
}
523525
else

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp