Changeset 88a4e298124ec7a53edeb8f5672b283d687ed33b
- Timestamp:
- 07/21/07 00:40:23
(1 year ago)
- Author:
- Pierre d'Herbemont <pdherbemont@videolan.org>
- git-committer:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1184971223 +0000
- git-parent:
[06bbffa635c81d01e1e7a71cafb75bb9c273a416]
- git-author:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1184971223 +0000
- Message:
bootstrap: Use libtoolize from contrib by default.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r2dc7b44 |
r88a4e29 |
|
| 35 | 35 | |
|---|
| 36 | 36 | # Check for contrib directory |
|---|
| 37 | | if test -d extras/contrib/bin; then |
|---|
| | 37 | if then |
|---|
| 38 | 38 | export PATH="`pwd`/extras/contrib/bin:$PATH" |
|---|
| 39 | 39 | if test -d extras/contrib/share/aclocal; then |
|---|
| … | … | |
| 100 | 100 | # Check for libtool |
|---|
| 101 | 101 | libtoolize="no" |
|---|
| 102 | | if glibtoolize --version >/dev/null 2>&1; then |
|---|
| | 102 | if test -x extras/contrib/bin/libtoolize --version > /dev/null 2>&1; then |
|---|
| | 103 | libtoolize="extras/contrib/bin/libtoolize" |
|---|
| | 104 | elif glibtoolize --version >/dev/null 2>&1; then |
|---|
| 103 | 105 | libtoolize="glibtoolize" |
|---|
| 104 | 106 | elif libtoolize --version >/dev/null 2>&1; then |
|---|