summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSignal Linden <signal@lindenlab.com>2025-08-12 09:02:07 -0700
committerGitHub <noreply@github.com>2025-08-12 09:02:07 -0700
commite3d15a9146d375368066cdbcf2a45f40165175f1 (patch)
tree30fa655419400b5c63e6f5fcfe86da4b7b6c32cb
parentf03cd219a91740de9f406cfae5bbc15194156c78 (diff)
Chore: Move message.xml to scripts/messages (#4501)
* Move message.xml to scripts/messages Get rid of the top-level etc/ directory by moving its only contents: message.xml to scripts/messages * Move message.xml to app_settings * Remove unneeded inclusion in viewer_manifest.py
-rw-r--r--indra/newview/CMakeLists.txt4
-rwxr-xr-xindra/newview/app_settings/message.xml (renamed from etc/message.xml)0
-rwxr-xr-xindra/newview/viewer_manifest.py1
3 files changed, 2 insertions, 3 deletions
diff --git a/indra/newview/CMakeLists.txt b/indra/newview/CMakeLists.txt
index 759a40fc08..8ed7876da1 100644
--- a/indra/newview/CMakeLists.txt
+++ b/indra/newview/CMakeLists.txt
@@ -1664,7 +1664,7 @@ set(viewer_APPSETTINGS_FILES
app_settings/toolbars.xml
app_settings/trees.xml
app_settings/viewerart.xml
- ${CMAKE_SOURCE_DIR}/../etc/message.xml
+ app_settings/message.xml
${CMAKE_SOURCE_DIR}/../scripts/messages/message_template.msg
packages-info.txt
featuretable.txt
@@ -1758,7 +1758,7 @@ if (WINDOWS)
set(COPY_INPUT_DEPENDENCIES
# The following commented dependencies are determined at variably at build time. Can't do this here.
- ${CMAKE_SOURCE_DIR}/../etc/message.xml
+ app_settings/message.xml
${CMAKE_SOURCE_DIR}/../scripts/messages/message_template.msg
${SHARED_LIB_STAGING_DIR}/openjp2.dll
${SHARED_LIB_STAGING_DIR}/llwebrtc.dll
diff --git a/etc/message.xml b/indra/newview/app_settings/message.xml
index dee3fd72dd..dee3fd72dd 100755
--- a/etc/message.xml
+++ b/indra/newview/app_settings/message.xml
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py
index 04c3fea93a..cf5e748513 100755
--- a/indra/newview/viewer_manifest.py
+++ b/indra/newview/viewer_manifest.py
@@ -63,7 +63,6 @@ class ViewerManifest(LLManifest):
def construct(self):
super(ViewerManifest, self).construct()
self.path(src="../../scripts/messages/message_template.msg", dst="app_settings/message_template.msg")
- self.path(src="../../etc/message.xml", dst="app_settings/message.xml")
if self.is_packaging_viewer():
with self.prefix(src_dst="app_settings"):