mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
12 lines
208 B
Bash
12 lines
208 B
Bash
#!/bin/sh
|
|
LIBTOOLIZE=libtoolize
|
|
SYSNAME=`uname`
|
|
if [ "x$SYSNAME" = "xDarwin" ] ; then
|
|
LIBTOOLIZE=glibtoolize
|
|
fi
|
|
aclocal && \
|
|
autoheader && \
|
|
$LIBTOOLIZE && \
|
|
autoconf && \
|
|
automake --add-missing --copy
|