Skip to content
Snippets Groups Projects
Commit c351a641 authored by Jack Nagel's avatar Jack Nagel
Browse files

Use original value when building the flag

parent 7498cfff
No related branches found
No related tags found
No related merge requests found
......@@ -147,13 +147,13 @@ class Cmd
args << "-Wl,#{arg}"
when /^-I(.+)?/
# Support both "-Ifoo" (one argument) and "-I foo" (two arguments)
path = $1.chuzzle || whittler.next
path = canonical_path(path)
args << "-I#{path}" if keep?(path) and iset.add?(path)
val = $1.chuzzle || whittler.next
path = canonical_path(val)
args << "-I#{val}" if keep?(path) and iset.add?(path)
when /^-L(.+)?/
path = $1.chuzzle || whittler.next
path = canonical_path(path)
args << "-L#{path}" if keep?(path) and lset.add?(path)
val = $1.chuzzle || whittler.next
path = canonical_path(val)
args << "-L#{val}" if keep?(path) and lset.add?(path)
else
args << arg
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment