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
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
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
Timo Koch
dune-common
Commits
c88ca6c4
Commit
c88ca6c4
authored
19 years ago
by
Christian Engwer
Browse files
Options
Downloads
Patches
Plain Diff
fixed usage message
[[Imported from SVN: r3690]]
parent
20fbe78a
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
autogen.sh
+10
-4
10 additions, 4 deletions
autogen.sh
with
10 additions
and
4 deletions
autogen.sh
+
10
−
4
View file @
c88ca6c4
...
...
@@ -20,11 +20,17 @@ for OPT in "$@"; do
case
"
$OPT
"
in
--ac
=
*
|
--acversion
=
*
)
test
"x
$arg
"
==
"x"
||
(
usage
;
exit
1
;
)
if
test
"x
$arg
"
==
"x"
;
then
usage
;
exit
1
;
fi
ACVERSION
=
$arg
;;
--am
=
*
|
--amversion
=
*
)
test
"x
$arg
"
==
"x"
||
(
usage
;
exit
1
;
)
if
test
"x
$arg
"
==
"x"
;
then
usage
;
exit
1
;
fi
AMVERSION
=
$arg
;;
-h
|
--help
)
usage
;
exit
0
;;
...
...
@@ -33,7 +39,7 @@ done
## report parameters
if
test
"x
$ACVERSION
"
!=
"x"
;
then
echo
"Forcing autoconf version
$ACVERSION
"
echo
"Forcing autoconf version
$
ACVERSION
"
ACVERSION
=
-
$ACVERSION
if
!
which autoconf
$ACVERSION
>
/dev/null
;
then
echo
...
...
@@ -43,7 +49,7 @@ if test "x$ACVERSION" != "x"; then
fi
fi
if
test
"x
$AMVERSION
"
!=
"x"
;
then
echo
"Forcing automake version
$A
C
VERSION
"
echo
"Forcing automake version
$
AM
V
ERSION
"
AMVERSION
=
-
$AMVERSION
if
!
which automake
$AMVERSION
>
/dev/null
;
then
echo
...
...
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