mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 912971 - Strip ./ from targets given to pymake on the command line. r=ted
This commit is contained in:
parent
36fc0ca54c
commit
3aee57b087
@ -93,7 +93,7 @@ def parsecommandlineargs(args):
|
||||
value=val, valueloc=Location('<command-line>', i, len(vname) + len(t)),
|
||||
targetexp=None, source=data.Variables.SOURCE_COMMANDLINE))
|
||||
else:
|
||||
r.append(a)
|
||||
r.append(data.stripdotslash(a))
|
||||
|
||||
return stmts, r, ' '.join(overrides)
|
||||
|
||||
|
5
build/pymake/tests/cmd-stripdotslash.mk
Normal file
5
build/pymake/tests/cmd-stripdotslash.mk
Normal file
@ -0,0 +1,5 @@
|
||||
all:
|
||||
$(MAKE) -f $(TESTPATH)/cmd-stripdotslash.mk ./foo
|
||||
|
||||
./foo:
|
||||
@echo TEST-PASS
|
Loading…
Reference in New Issue
Block a user