Issue #1323 - Move XULRunner back to topsrcdir
@@ -631,17 +631,12 @@ def include_project_configure(project, external_source_dir, build_env, help):
|
||||
|
||||
build_app = project[0]
|
||||
|
||||
# XXX: Change this when 'browser' becomes invalid as an alias
|
||||
if build_app == 'browser':
|
||||
build_app = 'basilisk'
|
||||
#die('The project "browser" is no longer valid. Perhaps you meant "basilisk" or "palemoon"?')
|
||||
|
||||
path_project_src_dir_application = os.path.join(base_dir, 'application/' + build_app, 'moz.configure')
|
||||
if not external_source_dir and build_app not in ('xulrunner', 'js'):
|
||||
die('Cannot find project %s', build_app)
|
||||
|
||||
path_project_src_dir_root = os.path.join(base_dir, build_app, 'moz.configure')
|
||||
|
||||
if exists(path_project_src_dir_application):
|
||||
return path_project_src_dir_application
|
||||
elif exists(path_project_src_dir_root):
|
||||
if exists(path_project_src_dir_root):
|
||||
return path_project_src_dir_root
|
||||
else:
|
||||
die('Cannot find project %s', build_app)
|
||||
|
||||
@@ -9,5 +9,5 @@ if CONFIG['MOZ_EXTENSIONS']:
|
||||
DIRS += ['/extensions']
|
||||
|
||||
DIRS += [
|
||||
'/application/xulrunner',
|
||||
'/xulrunner',
|
||||
]
|
||||
|
Before Width: | Height: | Size: 744 B After Width: | Height: | Size: 744 B |
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |
|
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 3.8 KiB |
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 29 KiB |
@@ -4,4 +4,4 @@
|
||||
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
|
||||
include('../../toolkit/moz.configure')
|
||||
include('../toolkit/moz.configure')
|
||||