summaryrefslogtreecommitdiffstats
path: root/debian/libraw1394.postinst.in
diff options
context:
space:
mode:
authorGravatar aeb 2001-06-17 15:19:20 +0000
committerGravatar aeb 2001-06-17 15:19:20 +0000
commitc4b02997543e154b3301a65b0204d9e7e3b9fc48 (patch)
tree06c95b6f7bb84ea869217d8b6fafca7a770a99c9 /debian/libraw1394.postinst.in
parentAdded man page describing format of the iso dump file. (diff)
debian: Let postinst continue even if input is /dev/null.
debian: 0.9.0-2 release for the above. Fix mixed up sections for isodump man file in doc/Makefile.am and configure.in. git-svn-id: svn://svn.linux1394.org/libraw1394/trunk@69 53a565d1-3bb7-0310-b661-cf11e63c67ab
Diffstat (limited to 'debian/libraw1394.postinst.in')
-rw-r--r--debian/libraw1394.postinst.in7
1 files changed, 3 insertions, 4 deletions
diff --git a/debian/libraw1394.postinst.in b/debian/libraw1394.postinst.in
index 326b40f..d779f3e 100644
--- a/debian/libraw1394.postinst.in
+++ b/debian/libraw1394.postinst.in
@@ -10,8 +10,7 @@ Required /dev/raw1394 device file not found. Without it, libraw1394
is quite useless as it can not talk to the kernel driver.
EOF
- echo -n "Should I create it for you? [Y/n] "
- read REPLY
+ read -p "Should I create it for you? [Y/n] " REPLY || REPLY=no
case "$REPLY" in
y|yes|"")
@@ -31,9 +30,9 @@ EOF
cat <<EOF
/dev/raw1394 not created. You can create it at a later time manually
-with the command:
+with the commands:
- /dev/MAKEDEV raw1394
+ cd /dev; ./MAKEDEV raw1394
EOF
;;