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 | 6a8196d788b6c2c84d6e5848cee328385290cc62 (patch) | |
tree | f4eb14d7e04ac08cedc6d6ddf876074296e2f9cb /debian | |
parent | 12d82eb68481e3ef197b50b6a0b96ceb3fb8aa89 (diff) | |
download | vyatta-op-firewall-6a8196d788b6c2c84d6e5848cee328385290cc62.tar.gz vyatta-op-firewall-6a8196d788b6c2c84d6e5848cee328385290cc62.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 a0aa472..7051e15 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 |