Mercurial > hg > aboriginal
view more/build-control-images.sh @ 1157:300e6d919d86
Move "sources/more/" to just "more/", add a README explaining why those scripts are there, and adjust calls to them.
author | Rob Landley <rob@landley.net> |
---|---|
date | Mon, 05 Jul 2010 15:37:04 -0500 |
parents | sources/more/build-control-images.sh@94173723a272 |
children | e104d771ca17 |
line wrap: on
line source
#!/bin/bash # Iterate through sources/native-builds and run each script, writing output # to build/control-images/$SCRIPTNAME.hdc . sources/include.sh || exit 1 mkdir -p build/control-images || dienow for i in sources/native-builds/*.sh do SCRIPTNAME=$(echo $i | sed 's@.*/\(.*\)\.sh@\1@') # Forking doesn't work yet due to extract collisions with the same package #maybe_fork "$i build/control-images/$SCRIPTNAME.hdc | maybe_quiet" $i build/control-images/$SCRIPTNAME.hdc | maybe_quiet done