diff options
author | An-Cheng Huang <ancheng@vyatta.com> | 2008-11-19 11:05:06 -0800 |
---|---|---|
committer | An-Cheng Huang <ancheng@vyatta.com> | 2008-11-19 11:05:06 -0800 |
commit | cb9f44e27eda150ab2e7bb2c34fa9feb34112b0c (patch) | |
tree | 2e45e54aea2d51b6df814afd126a06f5d2962aec /debian | |
parent | e01c7f37a29ccc3e8a660c3c9995fd077948cc5d (diff) | |
download | vyatta-nat-cb9f44e27eda150ab2e7bb2c34fa9feb34112b0c.tar.gz vyatta-nat-cb9f44e27eda150ab2e7bb2c34fa9feb34112b0c.zip |
add support for development build
Diffstat (limited to 'debian')
-rwxr-xr-x | debian/rules | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules index e98fe01..2ec0c61 100755 --- a/debian/rules +++ b/debian/rules @@ -89,7 +89,11 @@ binary-indep: build install dh_compress dh_fixperms dh_installdeb - dh_gencontrol + if [ -f "../.VYATTA_DEV_BUILD" ]; then \ + dh_gencontrol -- -v999.dev; \ + else \ + dh_gencontrol; \ + fi dh_md5sums dh_builddeb |