Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
libzmq
Commits
2d8b1a78
Commit
2d8b1a78
authored
Jul 30, 2015
by
Joe Eli McIlvain
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1497 from bluca/fix-autogen-libtool-detection
Check for libtoolize instead of libtool on Linux
parents
a656b399
89fa904b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
autogen.sh
autogen.sh
+7
-3
No files found.
autogen.sh
View file @
2d8b1a78
...
...
@@ -20,10 +20,14 @@
# Script to generate all required files from fresh git checkout.
command
-v
libtool
>
/dev/null 2>&1
# Debian and Ubuntu do not shipt libtool anymore, but OSX does not ship libtoolize.
command
-v
libtoolize
>
/dev/null 2>&1
if
[
$?
-ne
0
]
;
then
echo
"autogen.sh: error: could not find libtool. libtool is required to run autogen.sh."
1>&2
exit
1
command
-v
libtool
>
/dev/null 2>&1
if
[
$?
-ne
0
]
;
then
echo
"autogen.sh: error: could not find libtool. libtool is required to run autogen.sh."
1>&2
exit
1
fi
fi
command
-v
autoreconf
>
/dev/null 2>&1
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment