Commit 2cc40bea authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Make sure nobody else wastes time on this

parent 208fb450
...@@ -52,6 +52,9 @@ buildroot = "../.." ...@@ -52,6 +52,9 @@ buildroot = "../.."
if len(sys.argv) == 3: if len(sys.argv) == 3:
srcroot = sys.argv[1] srcroot = sys.argv[1]
buildroot = sys.argv[2] buildroot = sys.argv[2]
elif len(sys.argv) != 1:
print("Two arguments or none")
exit(2)
tokens = { tokens = {
"T_INC": "++", "T_INC": "++",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment