Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
seqtools
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ensembl-gh-mirror
seqtools
Commits
a273e9f5
Commit
a273e9f5
authored
7 years ago
by
Ed Griffiths
Browse files
Options
Downloads
Patches
Plain Diff
fix up autogen.sh to allow just a checkout, no autoconf stuff. - BUILD
parent
5cab6a8f
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
src/autogen.sh
+16
-1
16 additions, 1 deletion
src/autogen.sh
with
16 additions
and
1 deletion
src/autogen.sh
+
16
−
1
View file @
a273e9f5
...
...
@@ -68,12 +68,14 @@ function fetch_lib
# Should gbtools be installed ? Default is 'yes'
checkout_only
=
'no'
gbtools_install
=
'yes'
while
getopts
":gz"
opt
;
do
while
getopts
":
c
gz"
opt
;
do
case
$opt
in
c
)
checkout_only
=
'yes'
;;
g
)
gbtools_install
=
'yes'
;;
z
)
gbtools_install
=
'no'
;;
esac
...
...
@@ -107,6 +109,17 @@ if [[ "$gbtools_install" == "yes" ]] ; then
fi
# Sometimes we want a tree containing any necessary subdirectories (aceconn etc)
# but don't want to run any autoconf stuff.
#
if
[
"
$checkout_only
"
=
'yes'
]
;
then
echo
"Subdirectories installed, exiting before autoreconf."
exit
0
fi
# If the gbtools autogen.sh script exists then run that. This is necessary
# for gbtools to create its gbtools_version.m4 file.
#
...
...
@@ -125,3 +138,5 @@ autoreconf -fi -v || echo "autoreconf failed...."
echo
"Done"
exit
0
This diff is collapsed.
Click to expand it.
Preview
0%
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