Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
XDG Integration
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
JennaHuntsman
XDG Integration
Commits
97a9211d
Commit
97a9211d
authored
14 years ago
by
Aleric Inglewood
Browse files
Options
Downloads
Patches
Plain Diff
VWR-24354: correct manifest dependencies to prevent parallel install problem
parent
790dfe75
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/contributions.txt
+1
-0
1 addition, 0 deletions
doc/contributions.txt
indra/newview/CMakeLists.txt
+22
-12
22 additions, 12 deletions
indra/newview/CMakeLists.txt
with
23 additions
and
12 deletions
doc/contributions.txt
+
1
−
0
View file @
97a9211d
...
...
@@ -83,6 +83,7 @@ Aleric Inglewood
VWR-24315
VWR-24317
VWR-24320
VWR-24354
SNOW-84
SNOW-477
SNOW-744
...
...
This diff is collapsed.
Click to expand it.
indra/newview/CMakeLists.txt
+
22
−
12
View file @
97a9211d
...
...
@@ -1718,6 +1718,17 @@ set(ARTWORK_DIR ${CMAKE_CURRENT_SOURCE_DIR} CACHE PATH
if
(
LINUX
)
set
(
product SecondLife-
${
ARCH
}
-
${
viewer_VERSION
}
)
# These are the generated targets that are copied to package/
set
(
COPY_INPUT_DEPENDENCIES
${
VIEWER_BINARY_NAME
}
linux-crash-logger
linux-updater
SLPlugin
media_plugin_webkit
media_plugin_gstreamer010
llcommon
)
add_custom_command
(
OUTPUT
${
product
}
.tar.bz2
COMMAND
${
PYTHON_EXECUTABLE
}
...
...
@@ -1735,18 +1746,11 @@ if (LINUX)
--login_channel=
${
VIEWER_LOGIN_CHANNEL
}
--source=
${
CMAKE_CURRENT_SOURCE_DIR
}
--touch=
${
CMAKE_CURRENT_BINARY_DIR
}
/
${
CMAKE_CFG_INTDIR
}
/.
${
product
}
.touched
DEPENDS
${
VIEWER_BINARY_NAME
}
${
CMAKE_CURRENT_SOURCE_DIR
}
/viewer_manifest.py
DEPENDS
${
CMAKE_CURRENT_SOURCE_DIR
}
/viewer_manifest.py
${
COPY_INPUT_DEPENDENCIES
}
)
add_dependencies
(
${
VIEWER_BINARY_NAME
}
SLPlugin media_plugin_gstreamer010 media_plugin_webkit
)
if
(
PACKAGE
)
add_custom_target
(
package ALL DEPENDS
${
product
}
.tar.bz2
)
add_dependencies
(
package linux-crash-logger-target
)
add_dependencies
(
package linux-updater-target
)
check_message_template
(
package
)
endif
(
PACKAGE
)
add_custom_command
(
OUTPUT
${
CMAKE_CURRENT_BINARY_DIR
}
/
${
CMAKE_CFG_INTDIR
}
/.
${
product
}
.copy_touched
COMMAND
${
PYTHON_EXECUTABLE
}
...
...
@@ -1766,9 +1770,15 @@ if (LINUX)
${
COPY_INPUT_DEPENDENCIES
}
COMMENT
"Performing viewer_manifest copy"
)
add_custom_target
(
copy_l_viewer_manifest ALL DEPENDS
${
CMAKE_CURRENT_BINARY_DIR
}
/
${
CMAKE_CFG_INTDIR
}
/.
${
product
}
.copy_touched
)
add_dependencies
(
copy_l_viewer_manifest
"
${
VIEWER_BINARY_NAME
}
"
linux-crash-logger-target linux-updater-target
)
if
(
PACKAGE
)
add_custom_target
(
package ALL DEPENDS
${
product
}
.tar.bz2
)
# Make sure we don't run two instances of viewer_manifest.py at the same time.
add_dependencies
(
package copy_l_viewer_manifest
)
check_message_template
(
package
)
endif
(
PACKAGE
)
endif
(
LINUX
)
if
(
DARWIN
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment