Fix misplaced device file in Debian installation.
git-svn-id: svn://svn.linux1394.org/libraw1394/trunk@48 53a565d1-3bb7-0310-b661-cf11e63c67ab
This commit is contained in:
parent
8e5e0b8113
commit
2b61e222ea
|
@ -1,7 +1,7 @@
|
||||||
# process this file with autoconf to get a configure script
|
# process this file with autoconf to get a configure script
|
||||||
|
|
||||||
AC_INIT(Makefile.am)
|
AC_INIT(Makefile.am)
|
||||||
AM_INIT_AUTOMAKE(libraw1394, 0.8.1)
|
AM_INIT_AUTOMAKE(libraw1394, 0.8.2)
|
||||||
AM_CONFIG_HEADER(config.h)
|
AM_CONFIG_HEADER(config.h)
|
||||||
|
|
||||||
AC_PROG_CC
|
AC_PROG_CC
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
libraw1394 (0.8.2) unstable; urgency=low
|
||||||
|
|
||||||
|
* Create device file in /dev instead of / (closes: #81158).
|
||||||
|
|
||||||
|
-- Andreas Bombe <bombe@informatik.tu-muenchen.de> Thu, 4 Jan 2001 02:37:57 +0100
|
||||||
|
|
||||||
libraw1394 (0.8.1) unstable; urgency=low
|
libraw1394 (0.8.1) unstable; urgency=low
|
||||||
|
|
||||||
* Use and require makedev (>= 2.3.1-49) which includes /dev/raw1394
|
* Use and require makedev (>= 2.3.1-49) which includes /dev/raw1394
|
||||||
|
|
|
@ -15,8 +15,8 @@ EOF
|
||||||
|
|
||||||
case "$REPLY" in
|
case "$REPLY" in
|
||||||
y|yes|"")
|
y|yes|"")
|
||||||
MAKEDEV raw1394
|
if (cd /dev && ./MAKEDEV raw1394); then
|
||||||
cat <<EOF
|
cat <<EOF
|
||||||
|
|
||||||
Device file created. You may want to fix the group/permission to
|
Device file created. You may want to fix the group/permission to
|
||||||
something appropriate for you. Note however that anyone who can open
|
something appropriate for you. Note however that anyone who can open
|
||||||
|
@ -25,6 +25,7 @@ unrestricted, including harddisks and other probably sensitive
|
||||||
devices.
|
devices.
|
||||||
|
|
||||||
EOF
|
EOF
|
||||||
|
fi
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
cat <<EOF
|
cat <<EOF
|
||||||
|
|
Reference in New Issue