diff options
-rw-r--r-- | debian/changelog | 2 | ||||
-rwxr-xr-x | debian/rules | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/debian/changelog b/debian/changelog index 95b7ebc..64bc2a3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -openvpn (2.3rc1-9) experimental; urgency=low +openvpn (2.3~rc1-9) experimental; urgency=low * Upload to experimental diff --git a/debian/rules b/debian/rules index 1ef1340..3927aa8 100755 --- a/debian/rules +++ b/debian/rules @@ -20,7 +20,7 @@ override_dh_auto_configure: override_dh_auto_build: dh_auto_build # The one shipped in the tarball gets rebuild (chaging /bin/sh in some cases) - sed -i -e '1s%.*%#!/bin/sh%' t_client.sh + sed -i -e '1s%.*%#!/bin/sh%' tests/t_client.sh # make plugins # $(MAKE) -C plugin/auth-pam/ $(shell dpkg-buildflags --export=configure) # $(MAKE) -C plugin/down-root/ $(shell dpkg-buildflags --export=configure) @@ -32,10 +32,10 @@ override_dh_auto_clean: # These two get deleted on "make clean", but come in the tarball # hack to keep them around after "make clean" -test -f openvpn.spec.not || mv openvpn.spec openvpn.spec.not - -test -f t_client.sh.not || mv t_client.sh t_client.sh.not + -test -f tests/t_client.sh.not || mv tests/t_client.sh tests/t_client.sh.not dh_auto_clean -test -f openvpn.spec.not && mv openvpn.spec.not openvpn.spec - -test -f t_client.sh.not && mv t_client.sh.not t_client.sh + -test -f tests/t_client.sh.not && mv tests/t_client.sh.not tests/t_client.sh # clean plugins # $(MAKE) -C plugin/auth-pam/ clean # $(MAKE) -C plugin/down-root/ clean |