Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Operate
Terraform modules
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
Alchemy Viewer
Alchemy Viewer
Commits
5b3b0a6f
Commit
5b3b0a6f
authored
14 years ago
by
Oz Linden
Browse files
Options
Downloads
Plain Diff
merge changes for storm-1182
parents
2ace3d7c
c18e2f74
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
doc/contributions.txt
+1
-0
1 addition, 0 deletions
doc/contributions.txt
indra/llvfs/lldir_linux.cpp
+3
-3
3 additions, 3 deletions
indra/llvfs/lldir_linux.cpp
indra/llvfs/lldir_mac.cpp
+3
-3
3 additions, 3 deletions
indra/llvfs/lldir_mac.cpp
with
7 additions
and
6 deletions
doc/contributions.txt
+
1
−
0
View file @
5b3b0a6f
...
@@ -204,6 +204,7 @@ Boroondas Gupte
...
@@ -204,6 +204,7 @@ Boroondas Gupte
SNOW-624
SNOW-624
SNOW-737
SNOW-737
STORM-318
STORM-318
STORM-1182
VWR-233
VWR-233
VWR-20583
VWR-20583
VWR-20891
VWR-20891
...
...
This diff is collapsed.
Click to expand it.
indra/llvfs/lldir_linux.cpp
+
3
−
3
View file @
5b3b0a6f
...
@@ -93,11 +93,11 @@ LLDir_Linux::LLDir_Linux()
...
@@ -93,11 +93,11 @@ LLDir_Linux::LLDir_Linux()
#else
#else
mAppRODataDir
=
tmp_str
;
mAppRODataDir
=
tmp_str
;
#endif
#endif
std
::
string
::
size_type
indra
_pos
=
mExecutableDir
.
find
(
"/
indra
"
);
std
::
string
::
size_type
build_dir
_pos
=
mExecutableDir
.
r
find
(
"/
build-linux-
"
);
if
(
indra
_pos
!=
std
::
string
::
npos
)
if
(
build_dir
_pos
!=
std
::
string
::
npos
)
{
{
// ...we're in a dev checkout
// ...we're in a dev checkout
mSkinBaseDir
=
mExecutableDir
.
substr
(
0
,
indra
_pos
)
+
"/indra/newview/skins"
;
mSkinBaseDir
=
mExecutableDir
.
substr
(
0
,
build_dir
_pos
)
+
"/indra/newview/skins"
;
llinfos
<<
"Running in dev checkout with mSkinBaseDir "
llinfos
<<
"Running in dev checkout with mSkinBaseDir "
<<
mSkinBaseDir
<<
llendl
;
<<
mSkinBaseDir
<<
llendl
;
}
}
...
...
This diff is collapsed.
Click to expand it.
indra/llvfs/lldir_mac.cpp
+
3
−
3
View file @
5b3b0a6f
...
@@ -150,11 +150,11 @@ LLDir_Mac::LLDir_Mac()
...
@@ -150,11 +150,11 @@ LLDir_Mac::LLDir_Mac()
CFURLRef
resourcesURLRef
=
CFBundleCopyResourcesDirectoryURL
(
mainBundleRef
);
CFURLRef
resourcesURLRef
=
CFBundleCopyResourcesDirectoryURL
(
mainBundleRef
);
CFURLRefToLLString
(
resourcesURLRef
,
mAppRODataDir
,
true
);
CFURLRefToLLString
(
resourcesURLRef
,
mAppRODataDir
,
true
);
U32
indra
_pos
=
mExecutableDir
.
find
(
"/
indra
"
);
U32
build_dir
_pos
=
mExecutableDir
.
r
find
(
"/
build-darwin-
"
);
if
(
indra
_pos
!=
std
::
string
::
npos
)
if
(
build_dir
_pos
!=
std
::
string
::
npos
)
{
{
// ...we're in a dev checkout
// ...we're in a dev checkout
mSkinBaseDir
=
mExecutableDir
.
substr
(
0
,
indra
_pos
)
mSkinBaseDir
=
mExecutableDir
.
substr
(
0
,
build_dir
_pos
)
+
"/indra/newview/skins"
;
+
"/indra/newview/skins"
;
llinfos
<<
"Running in dev checkout with mSkinBaseDir "
llinfos
<<
"Running in dev checkout with mSkinBaseDir "
<<
mSkinBaseDir
<<
llendl
;
<<
mSkinBaseDir
<<
llendl
;
...
...
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