diff options
author | An-Cheng Huang <ancheng@vyatta.com> | 2008-11-19 11:05:03 -0800 |
---|---|---|
committer | An-Cheng Huang <ancheng@vyatta.com> | 2008-11-19 11:05:03 -0800 |
commit | 093344935a7564ee32a714e0154309aa6dfdd30f (patch) | |
tree | 2eae6cfbccaf603b66cfd51ab851aad6e44306f9 | |
parent | 79d4d7e4e35dca088c220a033f08d9544df9e420 (diff) | |
download | vyatta-cfg-vpn-093344935a7564ee32a714e0154309aa6dfdd30f.tar.gz vyatta-cfg-vpn-093344935a7564ee32a714e0154309aa6dfdd30f.zip |
add support for development build
-rwxr-xr-x | debian/rules | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules index f088c27..78195fc 100755 --- a/debian/rules +++ b/debian/rules @@ -88,7 +88,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 |