Changeset 944


Ignore:
Timestamp:
08/22/06 00:26:21 (7 years ago)
Author:
perry
Message:

Deal with darwins renaming of libtoolize -> glibtoolize

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bootstrap.sh

    r904 r944  
    22 
    33set -x 
     4# Prefer aclocal 1.9 if we can find it 
    45aclocal-1.9 -I m4 ||  
    56        aclocal  -I m4 
    6 libtoolize --force --copy 
     7 
     8# Darwin bizarrely uses glibtoolize 
     9libtoolize --force --copy || 
     10        glibtoolize --force --copy 
     11 
    712autoheader 
     13 
     14# Prefer automake-1.9 if we can find it 
    815automake-1.9 --add-missing --copy --foreign ||  
    916        automake --add-missing --copy --foreign 
     17 
    1018autoconf 
Note: See TracChangeset for help on using the changeset viewer.