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
c294d9cc
Commit
c294d9cc
authored
19 years ago
by
Markus Blatt
Browse files
Options
Downloads
Patches
Plain Diff
Provided possibility to build only one module together with the ones it
depends on. [[Imported from SVN: r4513]]
parent
ab5cbbeb
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bin/dunecontrol
+16
-2
16 additions, 2 deletions
bin/dunecontrol
with
16 additions
and
2 deletions
bin/dunecontrol
+
16
−
2
View file @
c294d9cc
...
...
@@ -302,6 +302,15 @@ while test "x$1" != "x"; do
command
=
help
break
;;
--module
=
*
)
if
test
"x
$arg
"
==
"x"
;
then
usage
echo
"ERROR: Parameter for --opts is missing"
echo
exit
1
;
fi
MODULE
=
$arg
;;
--debug
)
true
;;
*
)
command
=
$option
...
...
@@ -323,8 +332,13 @@ done
case
"
$command
"
in
update
|
autogen
|
configure
|
make
|
all
|
exec
|
nothing
)
find_modules
.
build_modules
$command
find_modules
.
if
test
"x
$MODULE
"
!=
"x"
;
then
load_opts
$command
_build_module run_
$command
$MODULE
else
build_modules
$command
fi
;;
help
)
usage
...
...
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