view more/native-build-from-build.sh @ 1715:bffb25915831 draft 1.3.0

No longer need to revert this patch in 3.16, they fixed it.
author Rob Landley <rob@landley.net>
date Thu, 25 Dec 2014 21:46:31 -0600
parents 6173bb6f3b2c
children b89324905ca2
line wrap: on
line source

#!/bin/bash

# Run native build out of build directory, using host-tools.sh if
# available.

PATH="$(pwd)/build/host:$PATH"

X=$(readlink -f "$2" 2>/dev/null)
if [ -z "$X" ]
then
  echo "No control image $2" >&2
  exit 1
fi

cd build/system-image-"$1" && ./native-build.sh "$X"