view more/test.sh @ 1673:0f61292eab70

Add MUSL=1 config option to force musl build.
author Rob Landley <rob@landley.net>
date Sun, 17 Aug 2014 00:06:04 -0500
parents 95f662f66fe4
children
line wrap: on
line source

#!/bin/bash

# Run a command with sources/include.sh and an architecture loaded

if [ $# -eq 0 ]
then
  echo "Usage: [STAGE_NAME=...] more/test.sh ARCH COMMAND..." >&2
  exit 1
fi

. sources/include.sh || exit 1

[ "$1" != "host" ] && NO_CLEANUP=1 load_target "$1"
shift
eval "$@"