mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
Use shell for globbing in clean.
This commit is contained in:
parent
d00e774986
commit
eeda704462
1 changed files with 1 additions and 1 deletions
2
make.py
2
make.py
|
@ -136,7 +136,7 @@ CPU type: {}
|
|||
actions["build-headers"] = True
|
||||
|
||||
if actions["clean"]:
|
||||
subprocess.check_call(["rm", "-rvf", "build/*"])
|
||||
subprocess.check_call("rm -rvf build/*", shell=True) # Need shell for the build/* globbing
|
||||
subprocess.check_call(["make", "-C", os.path.join("software", "libcompiler-rt"), "clean"])
|
||||
subprocess.check_call(["make", "-C", os.path.join("software", "libbase"), "clean"])
|
||||
subprocess.check_call(["make", "-C", os.path.join("software", "libnet"), "clean"])
|
||||
|
|
Loading…
Reference in a new issue