From b2a72eca5851cfbd4146dd7e65867cd939b8f623 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Sat, 12 Jan 2013 22:32:29 +0000 Subject: [PATCH] debian: Get Wireshark version from the right place. Organization: Straylight/Edgeware From: Mark Wooding This is version 1.0.0pre12.1. --- debian/changelog | 7 +++++++ debian/rules | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index ce929b62..a8608e91 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +tripe (1.0.0pre12.1) experimental; urgency=low + + * Extract Wireshark version number from `wireshark-common' rather than + `wireshark': the latter need not be installed. + + -- Mark Wooding Sat, 12 Jan 2013 22:30:32 +0000 + tripe (1.0.0pre12) experimental; urgency=low * tripe-peer-services: Add machinery for notifying a peer that we no diff --git a/debian/rules b/debian/rules index 9525b985..04bc8ca0 100755 --- a/debian/rules +++ b/debian/rules @@ -61,7 +61,7 @@ install/tripe-peer-services:: ## Grab the version we built against, so we can put it in the dependencies. install/tripe-wireshark:: - dpkg --status wireshark | \ + dpkg --status wireshark-common | \ sed -n 's/^Version: */tripe:Wireshark-Version=/p' \ >> debian/tripe-wireshark.substvars -- [mdw]