Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- #! /bin/sh
- set -x
-
- rm -f aclocal.m4 configure libtool ltconfig ltmain.sh config.log
- rm -f autotools/compile autotools/config.guess autotools/config.sub autotools/missing autotools/mkinstalldirs autotools/depcomp autotools/install-sh
-
- # Check for automake
- amvers="none"
- if automake-1.7 --version >/dev/null 2>&1
- then
- amvers="-1.7"
- else
- if automake-1.6 --version >/dev/null 2>&1
- then
- amvers="-1.6"
- else
- if automake-1.5 --version >/dev/null 2>&1
- then
- amvers="-1.5"
- else
- if automake --version > /dev/null 2>&1
- then
- amvers=`automake --version | sed -e '1s/[^0-9]*//' -e q`
-
- if expr "$amvers" "<" "1.5" > /dev/null 2>&1
- then amvers="none"
- else amvers=""
- fi
- fi
- fi
- fi
- fi
-
- if test x$amvers = xnone
- then
- set +x
- echo "you need automake version 1.5 or later"
- exit 1
- fi
-
- aclocal${amvers} -I autotools || exit 1
- autoheader || exit 1
- automake${amvers} --add-missing --copy || exit 1
- autoconf || exit 1
- rm -f config.cache
|