diff options
-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 |