Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
lcgcmake
Manage
Activity
Members
Labels
Plan
Wiki
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sft
lcgcmake
Merge requests
!433
Fix inconsistencies in GO variables
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix inconsistencies in GO variables
SPI-1622
into
master
Overview
4
Commits
1
Pipelines
1
Changes
1
Merged
Pere Mato Vila
requested to merge
SPI-1622
into
master
4 years ago
Overview
4
Commits
1
Pipelines
1
Changes
1
Expand
Closes
SPI-1622
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
668e6ee4
1 commit,
4 years ago
1 file
+
4
−
6
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
cmake/scripts/create_lcg_view_setup_csh.in
+
4
−
6
Options
@@ -270,11 +270,13 @@ endif
#---then Go
if ( -e $thisdir/bin/go ) then
set go_dir=`readlink $thisdir/bin/go`
set go_dir=`dirname $go_dir`
set go_dir=`dirname $go_dir`
setenv GOROOT $go_dir
endif
#---then gophernotes
if ( -e $thisdir/bin/go ) then
if ( -e $thisdir/bin/go
phernotes
) then
set gophernotes_bindir=`readlink $thisdir/bin/gophernotes`
set gophernotes_dir=`dirname $gophernotes_bindir`
set gophernotes_dir=`dirname $gophernotes_dir`
@@ -283,11 +285,7 @@ if ( -e $thisdir/bin/go ) then
else
setenv GOPATH ${gophernotes_dir}
endif
if ($?GOBIN) then
setenv GOBIN ${gophernotes_bindir}:${GOBIN}
else
setenv GOBIN ${gophernotes_bindir}
endif
setenv GOBIN `dirname $gophernotes_bindir`
endif
if ( -e $thisdir/lib/libQt5Gui.so ) then
Loading