diff options
author | An-Cheng Huang <ancheng@vyatta.com> | 2008-11-19 11:05:07 -0800 |
---|---|---|
committer | An-Cheng Huang <ancheng@vyatta.com> | 2008-11-19 11:05:07 -0800 |
commit | 9663fb121086839c69626b52375212a2228e2d7f (patch) | |
tree | a7b370c2afb4cea386ef46a6b037aec62bedfdd2 | |
parent | 8ead253afe7022bfaed5be31562317053d4c5c18 (diff) | |
download | vyatta-op-qos-9663fb121086839c69626b52375212a2228e2d7f.tar.gz vyatta-op-qos-9663fb121086839c69626b52375212a2228e2d7f.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 ae31b6c..1f68d34 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 |