Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
DD4hep
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cepc
externals
mirroring
DD4hep
Commits
509e8910
Commit
509e8910
authored
9 years ago
by
Frank Gaede
Browse files
Options
Downloads
Patches
Plain Diff
changed env scripts to prepend to library pathes (DD4hep and dependant packages)
parent
f53e7307
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
cmake/thisdd4hep.sh
+2
-2
2 additions, 2 deletions
cmake/thisdd4hep.sh
cmake/thisdd4hep_package.sh.in
+4
-4
4 additions, 4 deletions
cmake/thisdd4hep_package.sh.in
with
6 additions
and
6 deletions
cmake/thisdd4hep.sh
+
2
−
2
View file @
509e8910
...
...
@@ -35,9 +35,9 @@ then
if
[
@GEANT4_USE_CLHEP@
]
;
then
if
[
@USE_DYLD@
]
then
export
DYLD_LIBRARY_PATH
=
$DYLD_LIBRARY_PATH
:
@CLHEP_LIBRARY_PATH@
export
DYLD_LIBRARY_PATH
=
@CLHEP_LIBRARY_PATH@
:
$DYLD_LIBRARY_PATH
else
export
LD_LIBRARY_PATH
=
$LD_LIBRARY_PATH
:
@CLHEP_LIBRARY_PATH@
export
LD_LIBRARY_PATH
=
@CLHEP_LIBRARY_PATH@
:
$LD_LIBRARY_PATH
fi
fi
fi
...
...
This diff is collapsed.
Click to expand it.
cmake/thisdd4hep_package.sh.in
+
4
−
4
View file @
509e8910
...
...
@@ -13,9 +13,9 @@ export PATH=$PATH:@CMAKE_INSTALL_PREFIX@/bin
if [ @USE_DYLD@ ]
then
export DYLD_LIBRARY_PATH=
$DYLD_LIBRARY_PATH:
@CMAKE_INSTALL_PREFIX@/lib
export DYLD_LIBRARY_PATH=@CMAKE_INSTALL_PREFIX@/lib
:$DYLD_LIBRARY_PATH
else
export LD_LIBRARY_PATH=
$LD_LIBRARY_PATH:
@CMAKE_INSTALL_PREFIX@/lib
export LD_LIBRARY_PATH=@CMAKE_INSTALL_PREFIX@/lib
:$LD_LIBRARY_PATH
fi
...
...
@@ -28,9 +28,9 @@ do
if [ @USE_DYLD@ ]
then
# echo " ### export DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH:${lp} "
export DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH
:${lp}
export DYLD_LIBRARY_PATH=$
{lp}:$
DYLD_LIBRARY_PATH
else
# echo " ### export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:${lp} "
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH
:${lp}
export LD_LIBRARY_PATH=$
{lp}:$
LD_LIBRARY_PATH
fi
done
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