diff options
author | Mark Purcell <msp@debian.org> | 2008-10-22 22:05:02 +1100 |
---|---|---|
committer | etobi <git@e-tobi.net> | 2013-09-03 09:48:44 +0200 |
commit | e60d1ba8d2ddcd1e5d7a26d352ad2a3b0e10e85d (patch) | |
tree | 1f91817362519fe1e2bb423c95e864ac3a17007a | |
parent | 174c5adb5812a68a12292e86e662ee0fadb58b72 (diff) | |
download | linux-dvb-apps-e60d1ba8d2ddcd1e5d7a26d352ad2a3b0e10e85d.tar.gz |
Imported Debian patch 1.1.1+rev1207-4debian/1.1.1+rev1207-4
Diffstat (limited to '')
-rw-r--r-- | debian/changelog | 8 | ||||
-rw-r--r-- | debian/dvb-apps.postinst | 6 |
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# |