diff options
author | An-Cheng Huang <ancheng@vyatta.com> | 2008-11-19 11:05:13 -0800 |
---|---|---|
committer | An-Cheng Huang <ancheng@vyatta.com> | 2008-11-19 11:05:13 -0800 |
commit | fba28aade279d0f20b76a7a4519bb308bbaa29a0 (patch) | |
tree | 2d7d74609bae86357498fa1b1e9b216e83827c2d | |
parent | 498a8cd29e1bcd7ae7754b50ffe45a8b916ee577 (diff) | |
download | quagga-fba28aade279d0f20b76a7a4519bb308bbaa29a0.tar.bz2 quagga-fba28aade279d0f20b76a7a4519bb308bbaa29a0.tar.xz |
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 67ee890b..170e9035 100755 --- a/debian/rules +++ b/debian/rules @@ -130,7 +130,11 @@ binary-arch: build install dh_installdeb # dh_shlibdeps: removed "-L quagga" for Woody backport compatibility. dh_shlibdeps - dh_gencontrol + if [ -f "../.VYATTA_DEV_BUILD" ]; then \ + dh_gencontrol -- -v999.dev; \ + else \ + dh_gencontrol; \ + fi dh_md5sums dh_builddeb |