summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJoshua Haberman <jhaberman@gmail.com>2019-05-20 15:56:08 -0700
committerGitHub <noreply@github.com>2019-05-20 15:56:08 -0700
commit1a77fbce39f5a764e80a7e873da662b74dfc6fb0 (patch)
tree6f9ae3a0db4f0dd77fa0f890723d1477369e4df3 /tools
parent7804454f683af4fa866b88a218faba32e1b6a9b1 (diff)
parent8a41e6cb123bded11789a1fff8bc63c94dcb09f9 (diff)
Merge pull request #171 from haberman/master
Fixed amalgamation to not exclude upb/decode.c.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/amalgamate.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/amalgamate.py b/tools/amalgamate.py
index 16b34aa..bc083b3 100755
--- a/tools/amalgamate.py
+++ b/tools/amalgamate.py
@@ -66,7 +66,7 @@ output_path = sys.argv[1]
amalgamator = Amalgamator(output_path)
files = []
-for arg in sys.argv[3:]:
+for arg in sys.argv[2:]:
arg = arg.strip()
if arg.startswith("-I"):
amalgamator.add_include_path(arg[2:])
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback