diff options
Diffstat (limited to 'debian')
-rw-r--r-- | debian/control | 4 | ||||
-rwxr-xr-x | debian/rules | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/debian/control b/debian/control index 4cf7a5f..80e26d6 100644 --- a/debian/control +++ b/debian/control @@ -20,9 +20,9 @@ Depends: sed (>= 4.1.5), vyatta-bash | bash (>= 3.1), less, libio-prompt-perl, - at + at, + net-tools Suggests: util-linux (>= 2.13-5), - net-tools, ncurses-bin (>= 5.5-5), Description: bash operational command completion Vyatta operational command bash completion script and base templates diff --git a/debian/rules b/debian/rules index 4db6686..3277be8 100755 --- a/debian/rules +++ b/debian/rules @@ -70,7 +70,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 |