summaryrefslogtreecommitdiff
path: root/src/rules/license.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/rules/license.cpp')
-rw-r--r--src/rules/license.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/rules/license.cpp b/src/rules/license.cpp
index d70a051..06eda18 100644
--- a/src/rules/license.cpp
+++ b/src/rules/license.cpp
@@ -24,6 +24,11 @@ registerRuleExt(license, "005", "(.+)[.](h|cpp)")
startRule(license)
{
+ if (isMatch(file, "(.*)[/]((debug|sdl2gfx)[/]([^/]*)|mumblemanager"
+ "|SDLMain|utils/physfsrwops|utils/base64)[.](cpp|h)"))
+ {
+ terminateRule();
+ }
}
endRule(license)