Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
e3-require
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container 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
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
ESS EPICS Environment
wrappers
e3-require
Merge requests
!127
E3-1167
: Fix failing doubly-recursive dependency
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
E3-1167
: Fix failing doubly-recursive dependency
e3_1167_doubly_recursive_deps
into
master
Overview
1
Commits
2
Pipelines
2
Changes
2
Merged
Simon Rose
requested to merge
e3_1167_doubly_recursive_deps
into
master
1 year ago
Overview
1
Commits
2
Pipelines
2
Changes
2
Expand
0
0
Merge request reports
Compare
master
version 1
ffc20fb3
1 year ago
master (base)
and
latest version
latest version
83e3faa2
2 commits,
1 year ago
version 1
ffc20fb3
2 commits,
1 year ago
2 files
+
10
−
6
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
require-ess/tools/driver.makefile
+
1
−
3
Options
@@ -372,9 +372,7 @@ define update_dep_versions
# If module_VERSION already exists fails if it doesn't matches
# module_FETCHED_VERSION.
$
$(
foreach
mm,
$$(
$$
m_DEPS
)
,
\
$$(
eval
\
$$(
mm
)
_FETCHED_VERSION :
=
$$(
call
select
,2,
$$(
$$
m_TBL
)
,
$$
$$(
call str-eq,
$$$$
1,
$$(
mm
)))
\
)
\
$$(
eval
$$(
mm
)
_FETCHED_VERSION :
=
$$(
call
select
,2,
$$(
$$
m_TBL
)
,
$$
$$(
call str-eq,
$$$$
1,
$$(
mm
))))
\
$$(
if
$$($$(
mm
)
_VERSION
)
,
\
$$(
if
$$(
filter-out
$$($$(
mm
)
_FETCHED_VERSION
)
,
$$($$(
mm
)
_VERSION
))
,
\
$$(
error
"
$$(
m
)
depends on
$$(
mm
)
,
$$($$(
mm
)
_FETCHED_VERSION
)
but
$$(
mm
)
,
$$($$(
mm
)
_VERSION
)
is also needed"
)
,
\
Loading