Skip to content

Commit 209984f

Browse files
committed
line-directive: Actually stop expanding response files
The changes in #81996 fixed the response file format but failed to actually make `line-directive` stop expanding the response files in the compiler invocation. These changes fix that.
1 parent 68524a8 commit 209984f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/line-directive

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -682,7 +682,7 @@ def run():
682682
# delegates to the Win32 CreateProcess API. Unix systems handle
683683
# non-normalized paths, so don't have this problem.
684684
# Arguments passed to the process are normalized by the process.
685-
command_args = expand_response_files(sys.argv[dashes + 1:])
685+
command_args = sys.argv[dashes + 1:]
686686
command_args[0] = os.path.normpath(command_args[0])
687687

688688
try:

0 commit comments

Comments
 (0)