Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-common
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
Core Modules
dune-common
Commits
7fb35375
Commit
7fb35375
authored
17 years ago
by
Christian Engwer
Browse files
Options
Downloads
Patches
Plain Diff
add command required for configure dependency tracking
[[Imported from SVN: r5045]]
parent
0e5d1032
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bin/dunecontrol
+20
-4
20 additions, 4 deletions
bin/dunecontrol
with
20 additions
and
4 deletions
bin/dunecontrol
+
20
−
4
View file @
7fb35375
...
...
@@ -322,6 +322,17 @@ create_module_list() {
fi
}
# print the module list
print_module_list
()
{
DELIM
=
$1
shift
while
test
-n
"
$2
"
;
do
echo
-n
"
$(
eval echo
\$
NAME_
$1
)
$DELIM
"
shift
done
echo
-n
"
$(
eval echo
\$
NAME_
$1
)
"
}
if
test
"x
$1
"
=
"x"
;
then
usage
exit
1
...
...
@@ -436,10 +447,15 @@ done
case
"
$command
"
in
print
)
create_module_list
for
mod
in
$MODULES
;
do
echo
-n
"
$(
eval echo
\$
NAME_
$mod
)
"
done
echo
eval
"print_module_list ' '
$MODULES
"
echo
>
/dev/stderr
;;
m4print
)
create_module_list
eval
"print_module_list ','
$MODULES
"
echo
-n
"Dependencies are: "
>
/dev/stderr
eval
"print_module_list ','
$MODULES
"
>
/dev/stderr
echo
"."
>
/dev/stderr
;;
export
)
create_module_list
...
...
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