aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--debian/changelog8
-rw-r--r--debian/dvb-apps.postinst6
2 files changed, 12 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog
index 3699abc..fc87926 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+linuxtv-dvb-apps (1.1.1+rev1207-4) unstable; urgency=low
+
+ * Switch postinst to check for /dev/MAKEDEV
+ - /var/lib/dpkg/info/dvb-apps.postinst: line 6: /sbin/MAKEDEV: No such
+ file or directory (Closes: #502831)
+
+ -- Mark Purcell <msp@debian.org> Wed, 22 Oct 2008 22:05:02 +1100
+
linuxtv-dvb-apps (1.1.1+rev1207-3) unstable; urgency=medium
[ Tobias Grimm ]
diff --git a/debian/dvb-apps.postinst b/debian/dvb-apps.postinst
index b358197..3a12ccf 100644
--- a/debian/dvb-apps.postinst
+++ b/debian/dvb-apps.postinst
@@ -2,8 +2,10 @@
set -e
-if [ ! -e /dev/.devfsd ] ; then
-cd /dev && /sbin/MAKEDEV dvb
+if [ -x /dev/MAKEDEV ]; then
+ echo "creating dvb devices..."
+ cd /dev
+ ./MAKEDEV dvb
fi
#DEBHELPER#