lw-build-system/scripts/build.app.sh/instantiate

15 lines
274 B
Plaintext
Raw Permalink Normal View History

2007-09-11 23:06:23 +01:00
case "$1" in
bin) DEST_BINDIR="BINDIR" ;;
sbin) DEST_BINDIR="SBINDIR" ;;
cgi) DEST_BINDIR="CGIDIR" ;;
**)
echo "One argument required: binary location (bin, sbin or cgi)."
2007-01-31 19:14:25 +00:00
exit 1
2007-09-11 23:06:23 +01:00
;;
2007-11-22 13:38:24 +00:00
esac
2007-01-31 19:14:25 +00:00
2007-09-11 23:06:23 +01:00
do_parameter_subst DEST_BINDIR
2007-01-31 19:14:25 +00:00
true
2007-08-08 13:03:18 +01:00
# vim: syntax=sh:expandtab:ts=4:sw=4