From db90eca5bb764ca7e75541f03a0f7d9689aa8b56 Mon Sep 17 00:00:00 2001 From: crschmidt Date: Sun, 16 Dec 2007 23:15:28 +0000 Subject: [PATCH] An antidote to r5440: Allow for '@requires: ' to trigger single file build dependencies, since this is our most common tpo in this regard. git-svn-id: http://svn.openlayers.org/trunk/openlayers@5442 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- tools/mergejs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/mergejs.py b/tools/mergejs.py index 43a399fbbc..ace50f0fab 100755 --- a/tools/mergejs.py +++ b/tools/mergejs.py @@ -51,7 +51,7 @@ import sys SUFFIX_JAVASCRIPT = ".js" -RE_REQUIRE = "@requires (.*)\n" # TODO: Ensure in comment? +RE_REQUIRE = "@requires:? (.*)\n" # TODO: Ensure in comment? class SourceFile: """ Represents a Javascript source code file.