summaryrefslogtreecommitdiff
path: root/ubuntu
diff options
context:
space:
mode:
authorChase Qi <chase.qi@linaro.org>2016-07-21 20:11:33 +0800
committerChase Qi <chase.qi@linaro.org>2016-07-22 08:03:38 +0800
commit74dcae69247c5741921ec8006e2723b39991fa61 (patch)
tree423ccf894732c5bdceb5ef85645bb3196e2ffc36 /ubuntu
parent812c0b5515dddf029d7e6e349e6145a83f3ae86a (diff)
ubuntu: ltp: fix configure not found
Change-Id: If9ee7dd2d8ae6a07305038043fdd3786b0aca9eb Signed-off-by: Chase Qi <chase.qi@linaro.org>
Diffstat (limited to 'ubuntu')
-rw-r--r--ubuntu/ltp.yaml7
1 files changed, 3 insertions, 4 deletions
diff --git a/ubuntu/ltp.yaml b/ubuntu/ltp.yaml
index b9f94e8..ee9ab7c 100644
--- a/ubuntu/ltp.yaml
+++ b/ubuntu/ltp.yaml
@@ -23,15 +23,14 @@ install:
- 'rm -rf /opt/ltp'
- 'mkdir -p /opt/ltp'
- 'cd /opt/ltp'
- - 'wget https://github.com/linux-test-project/ltp/archive/$VERSION.zip'
- - 'unzip $VERSION.zip'
- - 'cd ltp-$VERSION'
+ - 'wget https://github.com/linux-test-project/ltp/releases/download/$VERSION/ltp-full-$VERSION.tar.xz'
+ - 'tar --strip-components=1 -Jxf ltp-full-$VERSION.tar.xz'
- 'mkdir build'
- './configure --prefix=$(readlink -f build)'
- 'make all'
- 'make SKIP_IDCHECK=1 install'
deps:
- - unzip
+ - xz-utils
- flex
- bison
- build-essential