From 44c5fe27d670b61ac1d1203401ce37f0f5924a8e Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Mon, 18 Feb 2019 10:01:09 +0100 Subject: builder.py: Accept C++ source files --- builder.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/builder.py b/builder.py index 7f4e7170..1679b6cb 100755 --- a/builder.py +++ b/builder.py @@ -209,8 +209,8 @@ def assertHeaderFile(path): sys.exit(2) def assertSourceFile(path): - if path[-2] != '.' or (path[-1] != 'c' and path[-1] != 'S'): - print("*** " + path + " does not end in .c or .S") + if path[-2:] != '.c' and path[-2:] != '.S' and path[-3:] != '.cc': + print("*** " + path + " does not end in .c, .cc or .S") print("*** Move it to a header file list") sys.exit(2) -- cgit v1.2.3