mirror of
https://github.com/libevent/libevent.git
synced 2025-01-09 00:56:20 +08:00
8a44062308
Previously, our autogen.sh script wouldn't tell automake to update older versions of its copied-in scripts, which would cause problems if they got sufficiently out-of-date.
12 lines
230 B
Bash
Executable File
12 lines
230 B
Bash
Executable File
#!/bin/sh
|
|
LIBTOOLIZE=libtoolize
|
|
SYSNAME=`uname`
|
|
if [ "x$SYSNAME" = "xDarwin" ] ; then
|
|
LIBTOOLIZE=glibtoolize
|
|
fi
|
|
aclocal -I m4 && \
|
|
autoheader && \
|
|
$LIBTOOLIZE && \
|
|
autoconf && \
|
|
automake --add-missing --force-missing --copy
|