Changeset 06bbffa635c81d01e1e7a71cafb75bb9c273a416

Show
Ignore:
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
  • extras/contrib/src/Makefile

    rf65a438 r06bbffa  
    287287 
    288288ifdef 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 $@ 
     289libtool-$(LIBTOOL_VERSION).tar.gz: 
     290    $(WGET) $(LIBTOOL_URL) 
     291 
     292libtool: libtool-$(LIBTOOL_VERSION).tar.gz 
     293    $(EXTRACT_GZ) 
     294 
     295.libtool: libtool 
     296    (cd $<; ./configure --prefix=$(PREFIX) && make && make install) 
     297    touch $@ 
     298 
     299CLEAN_PKG += libtool 
     300DISTCLEAN_PKG += libtool-$(LIBTOOL_VERSION).tar.gz 
    299301endif 
    300302