Ken Mixter | 14d603d | 2010-01-08 17:11:13 -0800 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | # |
| 3 | # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. |
| 4 | # Use of this source code is governed by a BSD-style license that can be |
| 5 | # found in the LICENSE file. |
| 6 | # |
| 7 | # Builds the .deb package. |
| 8 | |
| 9 | # Load common constants. This should be the first executable line. |
| 10 | # The path to common.sh should be relative to your script's location. |
| 11 | COMMON_SH="$(dirname "$0")/../../../scripts/common.sh" |
| 12 | . "$COMMON_SH" |
| 13 | |
Ken Mixter | e1514b8 | 2010-01-14 15:35:53 -0800 | [diff] [blame^] | 14 | # Remove this file to force configure to be rerun even when dirty |
| 15 | rm -f $(dirname "$0")/config.status |
| 16 | |
Ken Mixter | 14d603d | 2010-01-08 17:11:13 -0800 | [diff] [blame] | 17 | # Make the package |
| 18 | make_pkg_common "upstart" "$@" |