
git-subtree-dir: qcom/opensource/dataipa git-subtree-mainline:78e1eefbdb
git-subtree-split:c743113db7
Change-Id: repo: https://git.codelinaro.org/clo/la/platform/vendor/opensource/dataipa tag: LA.VENDOR.14.3.0.r1-17300-lanai.QSSI15.0
13 lines
252 B
Bash
Executable File
13 lines
252 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# autogen.sh -- Autotools bootstrapping
|
|
#
|
|
|
|
AUTO_TOOLS_VER=$(automake --version | grep ^automake | sed 's/^.* //g' | cut -d'.' -f1-2)
|
|
|
|
aclocal-${AUTO_TOOLS_VER} &&\
|
|
autoheader &&\
|
|
autoconf &&\
|
|
automake-${AUTO_TOOLS_VER} --add-missing --copy
|
|
|