diff --git a/indra/CMakeLists.txt b/indra/CMakeLists.txt
index 62a8f3f003e8e0c19580eef1590c29d4e3302090..e1e2f6f38a63b3bb33f09062687f88d956b530c7 100644
--- a/indra/CMakeLists.txt
+++ b/indra/CMakeLists.txt
@@ -6,8 +6,8 @@
 ## 3.8 added VS_DEBUGGER_WORKING_DIRECTORY support
 cmake_minimum_required(VERSION 3.8.0 FATAL_ERROR)
 
-set(ROOT_PROJECT_NAME "SecondLife" CACHE STRING
-    "The root project/makefile/solution name. Defaults to SecondLife.")
+set(ROOT_PROJECT_NAME "Alchemy" CACHE STRING
+    "The root project/makefile/solution name. Defaults to Alchemy.")
 project(${ROOT_PROJECT_NAME})
 
 set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake")
diff --git a/indra/cmake/Variables.cmake b/indra/cmake/Variables.cmake
index a5770c5528dd38ed50af1c45ae1e109f18788af7..19fdf8ed32c31fe7d9d196bddf0e68f2e0ec15fd 100644
--- a/indra/cmake/Variables.cmake
+++ b/indra/cmake/Variables.cmake
@@ -209,7 +209,7 @@ endif (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
 # Default deploy grid
 set(GRID agni CACHE STRING "Target Grid")
 
-set(VIEWER_CHANNEL "Second Life Test" CACHE STRING "Viewer Channel Name")
+set(VIEWER_CHANNEL "Alchemy Test" CACHE STRING "Viewer Channel Name")
 
 set(ENABLE_SIGNING OFF CACHE BOOL "Enable signing the viewer")
 set(SIGNING_IDENTITY "" CACHE STRING "Specifies the signing identity to use, if necessary.")
diff --git a/indra/lib/python/indra/util/llmanifest.py b/indra/lib/python/indra/util/llmanifest.py
index 4bc70b2ca4106c67fde86440317e9fa406dd45bc..37f9676aa06350d4650fb24509feb7d88bd112ae 100755
--- a/indra/lib/python/indra/util/llmanifest.py
+++ b/indra/lib/python/indra/util/llmanifest.py
@@ -91,7 +91,7 @@ def get_default_platform(dummy):
             }[sys.platform]
 
 DEFAULT_SRCTREE = os.path.dirname(sys.argv[0])
-CHANNEL_VENDOR_BASE = 'Second Life'
+CHANNEL_VENDOR_BASE = 'Alchemy'
 RELEASE_CHANNEL = CHANNEL_VENDOR_BASE + ' Release'
 
 BASE_ARGUMENTS=[
@@ -117,7 +117,7 @@ def get_default_platform(dummy):
     dict(name='buildtype', description='Build type (i.e. Debug, Release, RelWithDebInfo).', default=None),
     dict(name='bundleid',
          description="""The Mac OS X Bundle identifier.""",
-         default="com.secondlife.indra.viewer"),
+         default="org.alchemyviewer.viewer"),
     dict(name='channel',
          description="""The channel to use for updates, packaging, settings name, etc.""",
          default='CHANNEL UNSET'),