mirror of
https://github.com/libevent/libevent.git
synced 2025-01-09 00:56:20 +08:00
cabcd62f38
The == operator in shell is a bash-ism; do not use it in autogen.sh svn:r503
12 lines
208 B
Bash
Executable File
12 lines
208 B
Bash
Executable File
#!/bin/sh
|
|
LIBTOOLIZE=libtoolize
|
|
SYSNAME=`uname`
|
|
if [ "x$SYSNAME" = "xDarwin" ] ; then
|
|
LIBTOOLIZE=glibtoolize
|
|
fi
|
|
aclocal && \
|
|
autoheader && \
|
|
$LIBTOOLIZE && \
|
|
autoconf && \
|
|
automake --add-missing --copy
|