view more/test.sh @ 1764:12490c08f585 draft

Update musl.
author Rob Landley <rob@landley.net>
date Tue, 26 May 2015 23:50:09 -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 "$@"