Parent Directory
|
Revision Log
Cross platform fix to using glibtoolize (Darwin) vs. libtoolize (the rest...)
1 | #!/bin/sh |
2 | |
3 | set -x |
4 | |
5 | # On MacOS X, the GNU libtool is named `glibtool'. |
6 | HOSTOS=`uname` |
7 | LIBTOOLIZE=libtoolize |
8 | if test "$HOSTOS"x = Darwinx; then |
9 | LIBTOOLIZE=glibtoolize |
10 | fi |
11 | |
12 | $LIBTOOLIZE --force |
13 | aclocal -I m4 |
14 | autoheader |
15 | automake --foreign --add-missing --copy --gnu |
16 | autoconf |
17 |
grid.support@nikhef.nl | ViewVC Help |
Powered by ViewVC 1.1.28 |