Changeset 06bbffa635c81d01e1e7a71cafb75bb9c273a416
- Timestamp:
- 21/07/07 00:36:47
(1 year ago)
- Author:
- Pierre d'Herbemont <pdherbemont@videolan.org>
- git-committer:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1184971007 +0000
- git-parent:
[f12d0afa1893155d57f0cdfa5724b4c76c89ca61]
- git-author:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1184971007 +0000
- Message:
contrib: Really install libtool on Mac OS X as default version isn't working well enough.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rf65a438 |
r06bbffa |
|
| 287 | 287 | |
|---|
| 288 | 288 | ifdef HAVE_DARWIN_OS |
|---|
| 289 | | .libtool: |
|---|
| 290 | | if test -x /usr/bin/glibtoolize; then \ |
|---|
| 291 | | mkdir -p $(PREFIX)/bin ; \ |
|---|
| 292 | | ln -sf /usr/bin/glibtoolize $(PREFIX)/bin/libtoolize ; \ |
|---|
| 293 | | fi |
|---|
| 294 | | if test -f /usr/share/aclocal/libtool.m4; then \ |
|---|
| 295 | | mkdir -p $(PREFIX)/share/aclocal ; \ |
|---|
| 296 | | ln -sf /usr/share/aclocal/libtool.m4 $(PREFIX)/share/aclocal ; \ |
|---|
| 297 | | fi |
|---|
| 298 | | touch $@ |
|---|
| | 289 | libtool-$(LIBTOOL_VERSION).tar.gz: |
|---|
| | 290 | $(WGET) $(LIBTOOL_URL) |
|---|
| | 291 | |
|---|
| | 292 | libtool: libtool-$(LIBTOOL_VERSION).tar.gz |
|---|
| | 293 | $(EXTRACT_GZ) |
|---|
| | 294 | |
|---|
| | 295 | .libtool: libtool |
|---|
| | 296 | (cd $<; ./configure --prefix=$(PREFIX) && make && make install) |
|---|
| | 297 | touch $@ |
|---|
| | 298 | |
|---|
| | 299 | CLEAN_PKG += libtool |
|---|
| | 300 | DISTCLEAN_PKG += libtool-$(LIBTOOL_VERSION).tar.gz |
|---|
| 299 | 301 | endif |
|---|
| 300 | 302 | |
|---|