Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
base
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
FSL
base
Commits
01a593b9
Commit
01a593b9
authored
3 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Plain Diff
Merge branch 'mnt/fsldevdir' into 'master'
Mnt/fsldevdir See merge request
!38
parents
53d28436
4db7e98d
No related branches found
No related tags found
1 merge request
!38
Mnt/fsldevdir
Pipeline
#12293
passed
3 years ago
Stage: fsl-ci-build
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+2
-0
2 additions, 0 deletions
CHANGELOG.md
etc/fslconf/fsl-devel.sh
+8
-4
8 additions, 4 deletions
etc/fslconf/fsl-devel.sh
with
10 additions
and
4 deletions
CHANGELOG.md
+
2
−
0
View file @
01a593b9
...
...
@@ -5,6 +5,8 @@
*
If the
`${LDFLAGS}`
environment variable is set in the environment, any
`-L`
options are dropped from it, so that the
`$FSLDEVDIR`
can explicitly
be set to take precedence over
`$FSLDIR`
.
*
`${FSLDEVDIR}`
doesn't have to exist - if it is set before
`${FSLDIR}/etc/fslconf/fsl-devel.sh`
is run, it will not be overridden.
## 2111.8 (Friday 26th November 2021)
...
...
This diff is collapsed.
Click to expand it.
etc/fslconf/fsl-devel.sh
+
8
−
4
View file @
01a593b9
...
...
@@ -13,15 +13,19 @@
# FSLCONFDIR contains the FSL Makefile machinery
# for compiling and installing FSL Makefile-based
# projects.
if
[
!
-d
"
$FSLCONFDIR
"
]
;
then
export
FSLCONFDIR
=
$FSLDIR
/config
if
[
!
-d
"
$
{
FSLCONFDIR
}
"
]
;
then
export
FSLCONFDIR
=
$
{
FSLDIR
}
/config
fi
# FSLDEVDIR is an optional installation destination
# for development, so that locally built projects
# can be installed separately from FSLDIR.
if
[
!
-d
"
$FSLDEVDIR
"
]
;
then
export
FSLDEVDIR
=
$FSLDIR
#
# FSLDEVDIR doesn't necessarily have to exist, as
# it will be created the first time "make install"
# is run in a project directory.
if
[
-z
"
${
FSLDEVDIR
}
"
]
;
then
export
FSLDEVDIR
=
${
FSLDIR
}
fi
source
$FSLDIR
/etc/fslconf/fsl.sh
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