1
0
This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
TP-Link_Archer-XR500v/EN7526G_3.18Kernel_SDK/apps/public/ipsec-tools-0.8.0/bootstrap
2024-07-22 01:58:46 -03:00

22 lines
426 B
Bash
Executable File

#!/bin/sh
set -x
case `uname -s` in
Darwin)
LIBTOOLIZE=glibtoolize
;;
*)
LIBTOOLIZE=libtoolize
;;
esac
# Remove autoconf 2.5x's cache directory
rm -rf autom4te*.cache
aclocal -I . || exit 1
autoheader || exit 1
${LIBTOOLIZE} --force --copy || exit 1
automake --foreign --add-missing --copy || exit 1
autoconf || exit 1