23 lines
817 B
Diff
23 lines
817 B
Diff
From 3ed78c6fea6757ed9ce08328d7d3a16dc3570222 Mon Sep 17 00:00:00 2001
|
|
From: SquallATF <squallatf@gmail.com>
|
|
Date: Mon, 10 Sep 2018 11:32:18 +0300
|
|
Subject: [PATCH 17/N] Fix native symbolic link spawn passing wrong arg0
|
|
|
|
---
|
|
winsup/cygwin/spawn.cc | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/winsup/cygwin/spawn.cc b/winsup/cygwin/spawn.cc
|
|
index 99dbe64..c77970b 100644
|
|
--- a/winsup/cygwin/spawn.cc
|
|
+++ b/winsup/cygwin/spawn.cc
|
|
@@ -50,7 +50,7 @@ perhaps_suffix (const char *prog, path_conv& buf, int& err, unsigned opt)
|
|
|
|
err = 0;
|
|
debug_printf ("prog '%s'", prog);
|
|
- buf.check (prog, PC_SYM_FOLLOW | PC_NULLEMPTY | PC_POSIX,
|
|
+ buf.check (prog, PC_SYM_FOLLOW | PC_SYM_NOFOLLOW_REP | PC_NULLEMPTY | PC_POSIX,
|
|
(opt & FE_DLL) ? stat_suffixes : exe_suffixes);
|
|
|
|
if (buf.isdir ())
|