From 17eaa924b9cc63224f25d444a5ebc38313d1b478 Mon Sep 17 00:00:00 2001 From: rolux Date: Sat, 26 May 2012 14:33:25 +0200 Subject: [PATCH] run Core.js before Fallback.js --- tools/build/build.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/build/build.py b/tools/build/build.py index 7433ceb8..6e837bce 100755 --- a/tools/build/build.py +++ b/tools/build/build.py @@ -89,12 +89,12 @@ def build_oxjs(downloads=False, geo=False): # Ox.js filenames = [ [ - 'Core.js', # has to run first so that Ox is defined - 'Fallback.js' # FIXME: not clear if needed here + 'Core.js' # has to run first so that Ox is defined ], [ 'Array.js', # Ox.PATH depends on Ox.toArray 'Collection.js', # Ox.toArray depends on Ox.slice + 'Fallback.js', # FIXME: not clear if needed here 'Math.js', # Ox.MAX_LATITUDE depends on Ox.sinh 'Object.js', # Ox.typeOf depends on Ox.hasOwn 'Type.js' # Ox.slice may depend on Ox.typeOf