• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/bash
2
3cd /opt
4
5export QEMU_LD_PREFIX=/usr/${HOST}
6
7./configure ${HOST+--host=$HOST --disable-shared}
8make
9make dist
10make check RUNTESTFLAGS="-a $RUNTESTFLAGS" || true
11
12
13