~linaro-maintainers/live-build/linaro-live-build-3

« back to all changes in this revision

Viewing changes to scripts/build/lb_build

  • Committer: Daniel Baumann
  • Date: 2011-03-09 18:19:23 UTC
  • Revision ID: git-v1:c5c3f6133a0fb62ba9c2c3b839e6ea5774f9c76a
Adding debian version 3.0~a1-1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/bin/sh
2
2
 
3
3
## live-build(7) - System Build Scripts
4
 
## Copyright (C) 2006-2011 Daniel Baumann <daniel@debian.org>
 
4
## Copyright (C) 2006-2010 Daniel Baumann <daniel@debian.org>
5
5
##
6
6
## live-build comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
7
7
## This is free software, and you are welcome to redistribute it
24
24
if [ "${1}" != "noauto" ] && [ -x auto/build ]
25
25
then
26
26
        Echo_message "Executing auto/build script."
27
 
        ./auto/build "${@}"
 
27
        ./auto/build ${@}
28
28
        exit ${?}
29
29
fi
30
30