libraw1394-5: MAKEDEV fails

Bug #9321 reported by Debian Bug Importer
6
Affects Status Importance Assigned to Milestone
libraw1394 (Debian)
Fix Released
Unknown
libraw1394 (Ubuntu)
Invalid
High
Unassigned

Bug Description

Automatically imported from Debian bug report #212947 http://bugs.debian.org/212947

Revision history for this message
In , Dave Cinege (dcinege-dated-1066426580-ff7ea0) wrote :

Directly related to this bug, it also does not test for the presence of
devfs...

if [ "$1" = "configure" ]; then
 if [ ! -c /dev/.devfsd ]; then
  echo -n "Creating device node /dev/raw1394... "
  cd /dev && ./MAKEDEV raw1394
  echo "done."
 fi
fi

But that only works if devfsd is running...

Revision history for this message
In , Mark Brown (broonie) wrote : Patch fixing this

This patch fixes the bug in another way that's a bit more devfs
friendly. It tests to see if MAKEDEV is in /dev which won't be the case
if devfs is being used.

--- debian/libraw1394.postinst.in.orig 2003-10-26 13:48:41.000000000 +0000
+++ debian/libraw1394.postinst.in 2003-10-26 13:50:11.000000000 +0000
@@ -3,7 +3,7 @@
 . /usr/share/debconf/confmodule
 db_version 2.0

-if [ "$1" = "configure" ]; then
+if [ "$1" = "configure" -a -x /dev/MAKEDEV ]; then
  echo -n "Creating device node /dev/raw1394... "
  cd /dev && ./MAKEDEV raw1394
  echo "done."

If it helps I could do an upload fixing this bug.

--
"You grabbed my hand and we fell into it, like a daydream - or a fever."

Revision history for this message
In , Ben Collins (ben-collins) wrote : Re: Bug#212947: Patch fixing this

On Sun, Oct 26, 2003 at 01:56:32PM +0000, Mark Brown wrote:
> This patch fixes the bug in another way that's a bit more devfs
> friendly. It tests to see if MAKEDEV is in /dev which won't be the case
> if devfs is being used.
>
> --- debian/libraw1394.postinst.in.orig 2003-10-26 13:48:41.000000000 +0000
> +++ debian/libraw1394.postinst.in 2003-10-26 13:50:11.000000000 +0000
> @@ -3,7 +3,7 @@
> . /usr/share/debconf/confmodule
> db_version 2.0
>
> -if [ "$1" = "configure" ]; then
> +if [ "$1" = "configure" -a -x /dev/MAKEDEV ]; then
> echo -n "Creating device node /dev/raw1394... "
> cd /dev && ./MAKEDEV raw1394
> echo "done."
>
> If it helps I could do an upload fixing this bug.

I'm holding off until things warrant an upload.

--
Debian - http://www.debian.org/
Linux 1394 - http://www.linux1394.org/
Subversion - http://subversion.tigris.org/
WatchGuard - http://www.watchguard.com/

Revision history for this message
In , JJ Luza (jjluza) wrote :

Package: libraw1394-5
Version: 0.10.1-1
Severity: normal
Followup-For: Bug #212947

Hello.
I have the same problem.
Do you know when there is a release with the patch ?

-- System Information:
Debian Release: testing/unstable
Architecture: i386
Kernel: Linux client 2.6.0-test11-bk8 #1 Sat Dec 13 01:26:15 CET 2003 i686
Locale: LANG=fr_FR@euro, LC_CTYPE=fr_FR@euro (ignored: LC_ALL set to fr_FR@euro)

Versions of packages libraw1394-5 depends on:
ii debconf 1.3.22 Debian configuration management sy
ii libc6 2.3.2.ds1-10 GNU C Library: Shared libraries an
ii makedev 2.3.1-64 Creates device files in /dev

-- debconf information:
  libraw1394/device_node:

Revision history for this message
In , Sam Hocevar (sam-h) wrote : unable to install libraw1394-5

severity 212947 serious
thanks

Setting up libraw1394-5 (0.10.1-1) ...
Creating device node /dev/raw1394...
/var/lib/dpkg/info/libraw1394-5.postinst: line 8: ./MAKEDEV: No such
file or directory
dpkg: error processing libraw1394-5 (--configure):
 subprocess post-installation script returned error exit status 1

   I am using udev.

--
Sam Hocevar <email address hidden> <http://sam.zoy.org/>
     Software should be free -- http://www.debian.org/
 Media access should be free -- http://www.videolan.org/
      Knowledge must be free -- http://www.wikipedia.org/

Revision history for this message
Debian Bug Importer (debzilla) wrote :

Automatically imported from Debian bug report #212947 http://bugs.debian.org/212947

Revision history for this message
Debian Bug Importer (debzilla) wrote :

Message-Id: <20030927041604.0FA3BFAC99@raphaela>
Date: Sat, 27 Sep 2003 05:16:03 +0100
From: Mark Brown <email address hidden>
To: Debian Bug Tracking System <email address hidden>
Subject: libraw1394-5: MAKEDEV fails

Package: libraw1394-5
Version: 0.10.1-1
Severity: important
Tags: patch

Configuration of this package fails with:

| Setting up libraw1394-5 (0.10.1-1) ...
| Creating device node /dev/raw1394...
| /var/lib/dpkg/info/libraw1394-5.postinst: line 8: ./MAKEDEV: No such file or directory
| dpkg: error processing libraw1394-5 (--configure):
| subprocess post-installation script returned error exit status 1

The postinst should use /sbin/MAKEDEV rather than /dev/MAKEDEV since on
some systems the copy in /dev is not present.

--- debian/libraw1394.postinst.in.orig 2003-09-27 05:13:34.000000000 +0100
+++ debian/libraw1394.postinst.in 2003-09-27 05:13:47.000000000 +0100
@@ -5,7 +5,7 @@

 if [ "$1" = "configure" ]; then
        echo -n "Creating device node /dev/raw1394... "
- cd /dev && ./MAKEDEV raw1394
+ cd /dev & /sbin/MAKEDEV raw1394
        echo "done."
 fi

-- System Information:
Debian Release: testing/unstable
Architecture: powerpc
Kernel: Linux raphaela 2.4.21-powerpc #1 mar jui 8 19:36:37 CEST 2003 ppc
Locale: LANG=en_GB, LC_CTYPE=en_GB (ignored: LC_ALL set to en_GB)

Versions of packages libraw1394-5 depends on:
ii debconf 1.3.14 Debian configuration management sy
ii libc6 2.3.2-8 GNU C Library: Shared libraries an
ii makedev 2.3.1-63 Creates device files in /dev

-- debconf information:
* libraw1394/device_node:

Revision history for this message
Debian Bug Importer (debzilla) wrote :

Message-Id: <email address hidden>
Date: Sun, 12 Oct 2003 17:34:01 -0400
From: Dave Cinege <email address hidden>
To: <email address hidden>
Subject: Re: libraw1394-5: MAKEDEV fails

Directly related to this bug, it also does not test for the presence of
devfs...

if [ "$1" = "configure" ]; then
 if [ ! -c /dev/.devfsd ]; then
  echo -n "Creating device node /dev/raw1394... "
  cd /dev && ./MAKEDEV raw1394
  echo "done."
 fi
fi

But that only works if devfsd is running...

Revision history for this message
Debian Bug Importer (debzilla) wrote :

Message-ID: <email address hidden>
Date: Sun, 26 Oct 2003 13:56:32 +0000
From: Mark Brown <email address hidden>
To: <email address hidden>
Subject: Patch fixing this

This patch fixes the bug in another way that's a bit more devfs
friendly. It tests to see if MAKEDEV is in /dev which won't be the case
if devfs is being used.

--- debian/libraw1394.postinst.in.orig 2003-10-26 13:48:41.000000000 +0000
+++ debian/libraw1394.postinst.in 2003-10-26 13:50:11.000000000 +0000
@@ -3,7 +3,7 @@
 . /usr/share/debconf/confmodule
 db_version 2.0

-if [ "$1" = "configure" ]; then
+if [ "$1" = "configure" -a -x /dev/MAKEDEV ]; then
  echo -n "Creating device node /dev/raw1394... "
  cd /dev && ./MAKEDEV raw1394
  echo "done."

If it helps I could do an upload fixing this bug.

--
"You grabbed my hand and we fell into it, like a daydream - or a fever."

Revision history for this message
Debian Bug Importer (debzilla) wrote :

Message-ID: <email address hidden>
Date: Sun, 26 Oct 2003 08:57:55 -0500
From: Ben Collins <email address hidden>
To: Mark Brown <email address hidden>, <email address hidden>
Subject: Re: Bug#212947: Patch fixing this

On Sun, Oct 26, 2003 at 01:56:32PM +0000, Mark Brown wrote:
> This patch fixes the bug in another way that's a bit more devfs
> friendly. It tests to see if MAKEDEV is in /dev which won't be the case
> if devfs is being used.
>
> --- debian/libraw1394.postinst.in.orig 2003-10-26 13:48:41.000000000 +0000
> +++ debian/libraw1394.postinst.in 2003-10-26 13:50:11.000000000 +0000
> @@ -3,7 +3,7 @@
> . /usr/share/debconf/confmodule
> db_version 2.0
>
> -if [ "$1" = "configure" ]; then
> +if [ "$1" = "configure" -a -x /dev/MAKEDEV ]; then
> echo -n "Creating device node /dev/raw1394... "
> cd /dev && ./MAKEDEV raw1394
> echo "done."
>
> If it helps I could do an upload fixing this bug.

I'm holding off until things warrant an upload.

--
Debian - http://www.debian.org/
Linux 1394 - http://www.linux1394.org/
Subversion - http://subversion.tigris.org/
WatchGuard - http://www.watchguard.com/

Revision history for this message
Debian Bug Importer (debzilla) wrote :

Message-Id: <email address hidden>
Date: Sun, 14 Dec 2003 03:18:12 +0100
From: jjluza <email address hidden>
To: Debian Bug Tracking System <email address hidden>
Subject: Re: libraw1394-5: MAKEDEV fails

Package: libraw1394-5
Version: 0.10.1-1
Severity: normal
Followup-For: Bug #212947

Hello.
I have the same problem.
Do you know when there is a release with the patch ?

-- System Information:
Debian Release: testing/unstable
Architecture: i386
Kernel: Linux client 2.6.0-test11-bk8 #1 Sat Dec 13 01:26:15 CET 2003 i686
Locale: LANG=fr_FR@euro, LC_CTYPE=fr_FR@euro (ignored: LC_ALL set to fr_FR@euro)

Versions of packages libraw1394-5 depends on:
ii debconf 1.3.22 Debian configuration management sy
ii libc6 2.3.2.ds1-10 GNU C Library: Shared libraries an
ii makedev 2.3.1-64 Creates device files in /dev

-- debconf information:
  libraw1394/device_node:

Revision history for this message
Debian Bug Importer (debzilla) wrote :

Message-ID: <email address hidden>
Date: Thu, 21 Oct 2004 18:46:28 +0200
From: Sam Hocevar <email address hidden>
To: <email address hidden>
Cc: <email address hidden>
Subject: unable to install libraw1394-5

severity 212947 serious
thanks

Setting up libraw1394-5 (0.10.1-1) ...
Creating device node /dev/raw1394...
/var/lib/dpkg/info/libraw1394-5.postinst: line 8: ./MAKEDEV: No such
file or directory
dpkg: error processing libraw1394-5 (--configure):
 subprocess post-installation script returned error exit status 1

   I am using udev.

--
Sam Hocevar <email address hidden> <http://sam.zoy.org/>
     Software should be free -- http://www.debian.org/
 Media access should be free -- http://www.videolan.org/
      Knowledge must be free -- http://www.wikipedia.org/

Revision history for this message
Matt Zimmerman (mdz) wrote :

The version in Ubuntu is correct:

if [ "$1" = "configure" ]; then
        echo -n "Creating device node /dev/raw1394... "
        cd /dev && ./MAKEDEV raw1394
        echo "done."
fi

Revision history for this message
In , Frank Lichtenheld (djpig) wrote : Shouldn't MAKEDEV cope with it?

Hi there.

I've seen in the bug log some attempts to introduce checks for devfsd
and udev into the patch. I believe that MAKEDEV is already fixed to
include these changes itself, however. One only needs these changes when
invoking mknod directly.

Please correct me, if I'm wrong.

Gruesse,
--
Frank Lichtenheld <email address hidden>
www: http://www.djpig.de/

Revision history for this message
Debian Bug Importer (debzilla) wrote :

Message-ID: <email address hidden>
Date: Sat, 23 Oct 2004 19:02:41 +0200
From: Frank Lichtenheld <email address hidden>
To: <email address hidden>
Subject: Shouldn't MAKEDEV cope with it?

Hi there.

I've seen in the bug log some attempts to introduce checks for devfsd
and udev into the patch. I believe that MAKEDEV is already fixed to
include these changes itself, however. One only needs these changes when
invoking mknod directly.

Please correct me, if I'm wrong.

Gruesse,
--
Frank Lichtenheld <email address hidden>
www: http://www.djpig.de/

Revision history for this message
In , Andrew Pollock (apollock) wrote : Progress?

Hi Ben,

This bug is really quite long in the tooth, especially for an RC bug.

I got bitten by it yesterday. Are you planning on fixing it, or should
someone NMU it?

regards

Andrew

--
linux.conf.au 2005 - http://lca2005.linux.org.au/ - Birthplace of Tux
April 18th to 23rd - http://lca2005.linux.org.au/ - LINUX
Canberra, Australia - http://lca2005.linux.org.au/ - Get bitten!

Revision history for this message
Debian Bug Importer (debzilla) wrote :

Message-ID: <email address hidden>
Date: Sun, 31 Oct 2004 17:00:47 +1100
From: Andrew Pollock <email address hidden>
To: <email address hidden>
Subject: Progress?

--R3G7APHDIzY6R/pk
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

Hi Ben,

This bug is really quite long in the tooth, especially for an RC bug.

I got bitten by it yesterday. Are you planning on fixing it, or should
someone NMU it?

regards

Andrew

--=20
linux.conf.au 2005 - http://lca2005.linux.org.au/ - Birthplace of Tux
April 18th to 23rd - http://lca2005.linux.org.au/ - LINUX
Canberra, Australia - http://lca2005.linux.org.au/ - Get bitten!

--R3G7APHDIzY6R/pk
Content-Type: application/pgp-signature; name="signature.asc"
Content-Description: Digital signature
Content-Disposition: inline

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.4 (GNU/Linux)

iD8DBQFBhH+PIblXXKfZFgIRAj8GAKDMIlxmAOcsiJW/7E7NlD8Vlg+qfACg0aET
L8z6DljccK0ej42HQ/+eyNo=
=XCrg
-----END PGP SIGNATURE-----

--R3G7APHDIzY6R/pk--

Revision history for this message
In , Michael Banck (mbanck) wrote : NMU in DELAYED/2-day

tags 212947 +pending
thanks

Hi,

I have prepared an NMU and uploaded it to DELAYED/2-day. If you prefer
to fix this RC bug yourself, please upload a fixed version in the next
two days.

The patch for the NMU was as follows:

--- libraw1394-0.10.1.orig/debian/changelog
+++ libraw1394-0.10.1/debian/changelog
@@ -1,3 +1,10 @@
+libraw1394 (0.10.1-1.1) unstable; urgency=high
+
+ * Non-maintainer upload.
+ * Run MAKEDEV as /sbin/MAKEDEV in postinst. Closes: #212947
+
+ -- Michael Banck <email address hidden> Wed, 10 Nov 2004 14:09:01 +0100
+
 libraw1394 (0.10.1-1) unstable; urgency=low

   * New upstream.
--- libraw1394-0.10.1.orig/debian/libraw1394.postinst.in
+++ libraw1394-0.10.1/debian/libraw1394.postinst.in
@@ -5,7 +5,7 @@

 if [ "$1" = "configure" ]; then
        echo -n "Creating device node /dev/raw1394... "
- cd /dev && ./MAKEDEV raw1394
+ cd /dev && /sbin/MAKEDEV raw1394
        echo "done."
 fi

cheers,

Michael

Revision history for this message
Debian Bug Importer (debzilla) wrote :

Message-ID: <email address hidden>
Date: Wed, 10 Nov 2004 15:47:14 +0100
From: Michael Banck <email address hidden>
To: <email address hidden>
Cc: <email address hidden>
Subject: NMU in DELAYED/2-day

tags 212947 +pending
thanks

Hi,

I have prepared an NMU and uploaded it to DELAYED/2-day. If you prefer
to fix this RC bug yourself, please upload a fixed version in the next
two days.

The patch for the NMU was as follows:

--- libraw1394-0.10.1.orig/debian/changelog
+++ libraw1394-0.10.1/debian/changelog
@@ -1,3 +1,10 @@
+libraw1394 (0.10.1-1.1) unstable; urgency=high
+
+ * Non-maintainer upload.
+ * Run MAKEDEV as /sbin/MAKEDEV in postinst. Closes: #212947
+
+ -- Michael Banck <email address hidden> Wed, 10 Nov 2004 14:09:01 +0100
+
 libraw1394 (0.10.1-1) unstable; urgency=low

   * New upstream.
--- libraw1394-0.10.1.orig/debian/libraw1394.postinst.in
+++ libraw1394-0.10.1/debian/libraw1394.postinst.in
@@ -5,7 +5,7 @@

 if [ "$1" = "configure" ]; then
        echo -n "Creating device node /dev/raw1394... "
- cd /dev && ./MAKEDEV raw1394
+ cd /dev && /sbin/MAKEDEV raw1394
        echo "done."
 fi

cheers,

Michael

Revision history for this message
In , Michael Banck (mbanck) wrote : Fixed in NMU of libraw1394 0.10.1-1.1

tag 212947 + fixed

quit

This message was generated automatically in response to a
non-maintainer upload. The .changes file follows.

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Wed, 10 Nov 2004 14:09:01 +0100
Source: libraw1394
Binary: libraw1394-5 libraw1394-dev
Architecture: source i386
Version: 0.10.1-1.1
Distribution: unstable
Urgency: high
Maintainer: Michael Banck <email address hidden>
Changed-By: Michael Banck <email address hidden>
Description:
 libraw1394-5 - library for direct access to IEEE 1394 bus (aka FireWire)
 libraw1394-dev - library for direct access to IEEE 1394 bus - development files
Closes: 212947
Changes:
 libraw1394 (0.10.1-1.1) unstable; urgency=high
 .
   * Non-maintainer upload.
   * Run MAKEDEV as /sbin/MAKEDEV. Closes: #212947
Files:
 349256dce12520349eea7f7b6db0080b 691 libs optional libraw1394_0.10.1-1.1.dsc
 ba88373182c8e4dc073d68bc4f70ccf0 371 libs optional libraw1394_0.10.1-1.1.diff.gz
 3daa69393b24f90444861a2e5c85af6a 106036 libdevel optional libraw1394-dev_0.10.1-1.1_i386.deb
 64649dea89c4f26da367c780b57552bb 11616 libs optional libraw1394-5_0.10.1-1.1_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.5 (GNU/Linux)

iD8DBQFBkiFZmHaJYZ7RAb8RAu8cAJ9dWYIVvyoEkweKSoAa8MHWwndd6gCgwTc+
TmSiAWxofD5gcODk97NCsQ8=
=Sk9p
-----END PGP SIGNATURE-----

Revision history for this message
Debian Bug Importer (debzilla) wrote :

Message-Id: <email address hidden>
Date: Thu, 11 Nov 2004 16:32:06 -0500
From: Michael Banck <email address hidden>
To: <email address hidden>
Cc: Michael Banck <email address hidden>
Subject: Fixed in NMU of libraw1394 0.10.1-1.1

tag 212947 + fixed

quit

This message was generated automatically in response to a
non-maintainer upload. The .changes file follows.

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Wed, 10 Nov 2004 14:09:01 +0100
Source: libraw1394
Binary: libraw1394-5 libraw1394-dev
Architecture: source i386
Version: 0.10.1-1.1
Distribution: unstable
Urgency: high
Maintainer: Michael Banck <email address hidden>
Changed-By: Michael Banck <email address hidden>
Description:
 libraw1394-5 - library for direct access to IEEE 1394 bus (aka FireWire)
 libraw1394-dev - library for direct access to IEEE 1394 bus - development files
Closes: 212947
Changes:
 libraw1394 (0.10.1-1.1) unstable; urgency=high
 .
   * Non-maintainer upload.
   * Run MAKEDEV as /sbin/MAKEDEV. Closes: #212947
Files:
 349256dce12520349eea7f7b6db0080b 691 libs optional libraw1394_0.10.1-1.1.dsc
 ba88373182c8e4dc073d68bc4f70ccf0 371 libs optional libraw1394_0.10.1-1.1.diff.gz
 3daa69393b24f90444861a2e5c85af6a 106036 libdevel optional libraw1394-dev_0.10.1-1.1_i386.deb
 64649dea89c4f26da367c780b57552bb 11616 libs optional libraw1394-5_0.10.1-1.1_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.5 (GNU/Linux)

iD8DBQFBkiFZmHaJYZ7RAb8RAu8cAJ9dWYIVvyoEkweKSoAa8MHWwndd6gCgwTc+
TmSiAWxofD5gcODk97NCsQ8=
=Sk9p
-----END PGP SIGNATURE-----

Revision history for this message
In , Ludovic RESLINGER (lr-cuivres) wrote : Bug#212947: fixed in libraw1394 1.2.1-1
Download full text (3.6 KiB)

Source: libraw1394
Source-Version: 1.2.1-1

We believe that the bug you reported is fixed in the latest version of
libraw1394, which is due to be installed in the Debian FTP archive:

libraw1394-8_1.2.1-1_amd64.deb
  to pool/main/libr/libraw1394/libraw1394-8_1.2.1-1_amd64.deb
libraw1394-dev_1.2.1-1_amd64.deb
  to pool/main/libr/libraw1394/libraw1394-dev_1.2.1-1_amd64.deb
libraw1394-doc_1.2.1-1_all.deb
  to pool/main/libr/libraw1394/libraw1394-doc_1.2.1-1_all.deb
libraw1394_1.2.1-1.diff.gz
  to pool/main/libr/libraw1394/libraw1394_1.2.1-1.diff.gz
libraw1394_1.2.1-1.dsc
  to pool/main/libr/libraw1394/libraw1394_1.2.1-1.dsc
libraw1394_1.2.1.orig.tar.gz
  to pool/main/libr/libraw1394/libraw1394_1.2.1.orig.tar.gz

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to <email address hidden>,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Ludovic RESLINGER <email address hidden> (supplier of updated libraw1394 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing <email address hidden>)

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Sun, 10 Sep 2006 16:08:19 +0200
Source: libraw1394
Binary: libraw1394-doc libraw1394-8 libraw1394-dev
Architecture: source amd64 all
Version: 1.2.1-1
Distribution: unstable
Urgency: low
Maintainer: Ludovic RESLINGER <email address hidden>
Changed-By: Ludovic RESLINGER <email address hidden>
Description:
 libraw1394-8 - library for direct access to IEEE 1394 bus (aka FireWire)
 libraw1394-dev - library for direct access to IEEE 1394 bus - development files
 libraw1394-doc - Reference manual and documentation about libraw1394
Closes: 212947 238646 258121 259460 280911 290198 304890 332005 333322 357366 372802
Changes:
 libraw1394 (1.2.1-1) unstable; urgency=low
 .
   * New Maintainer. Closes: #372802
   * New upstream release. Closes: #304890
   * Remove upstream debian/ directory, new debianization.
   * upstream-fix: Warning messages from aclocal. Closes: #259460
     Closes: #357366
   * upstream-fix: New implementation with pkg-tools, lib1394.m4 is
     dropped. Closes: #258121
   * debian/control: Change maintainer's name.
   * debian/control: Add homepage in descriptions.
   * debian/control: Remove debconf dependency because no longer
     used. Closes: #280911 Closes: #332005
   * debian/copyright: Add Licences, Copyright Holders, Copyright
     notices. Closes: #290198
   * debian/libraw1394.postinst: Change MAKEDEV way to
     /sbin/MAKEDEV. Closes: #212947 Closes: #238646
   * debian/rules: Add documentation in postscript and html.
   * Change to Standards-Version 3.7.2.
   * Add dpatch packaging system.
   * README.Debian: Add information about the creation of
     /dev/raw1394. Closes: #333322
   * Add debian/watch file.
Files:
 0fb45b8b8676a04b241fdc632e5903f3 643 libs optional libraw1394_1.2.1-1.dsc
 af3a7573c15936df5d5bbe9c550d6278 377681 libs optional libraw1394_1.2.1.orig.tar.gz
 3b75f01c3a...

Read more...

Changed in libraw1394:
status: Fix Committed → Fix Released
Revision history for this message
Brian J. Murrell (brian-interlinx) wrote :

Hrm. Why is this still a problem in libraw1394-8?

#!/bin/sh -e

. /usr/share/debconf/confmodule
db_version 2.0

if [ "$1" = "configure" ]; then
        echo -n "Creating device node /dev/raw1394... "
        cd /dev && ./MAKEDEV raw1394
        echo "done."
fi

# Automatically added by dh_makeshlibs
if [ "$1" = "configure" ]; then
        ldconfig
fi
# End automatically added section

To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.