Summary: | unicap missing libv4l as dependency | ||
---|---|---|---|
Product: | Red Hat Enterprise Linux 6 | Reporter: | Tomas Pelka <tpelka> |
Component: | unicap | Assignee: | Kamil Dudka <kdudka> |
Status: | CLOSED ERRATA | QA Contact: | Desktop QE <desktop-qa-list> |
Severity: | unspecified | Docs Contact: | |
Priority: | unspecified | ||
Version: | 6.2 | CC: | atkac, redhat-bugzilla, rvokal |
Target Milestone: | rc | ||
Target Release: | --- | ||
Hardware: | Unspecified | ||
OS: | Unspecified | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | Bug Fix | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2011-08-24 15:09:55 UTC | Type: | --- |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: |
Description
Tomas Pelka
2011-08-05 09:51:05 UTC
There is a file named unicap-filter.sh in the SRPM that I believe is responsible for this madness: # The original script name has been passed as the first argument: "$@" | sed -e '/^libdcam.so/d' -e '/^libv4l.so/d' -e '/^libv4l2.so/d' -e '/^libvid21394.so/d' I am trying to figure out the idea behind... This was introduced in unicap-0_2_23-3_fc10: http://pkgs.fedoraproject.org/gitweb/?p=unicap.git;a=commitdiff;h=75d9c65 Taking the contents of libunicap-filter.sh from Fedora seems to solve the problem: Index: unicap-filter.sh =================================================================== RCS file: /cvs/dist/rpms/unicap/RHEL-6/unicap-filter.sh,v retrieving revision 1.1 diff -u -p -r1.1 unicap-filter.sh --- unicap-filter.sh 12 Aug 2009 07:12:18 -0000 1.1 +++ unicap-filter.sh 5 Aug 2011 10:17:07 -0000 @@ -1,4 +1,4 @@ #!/bin/sh # The original script name has been passed as the first argument: -"$@" | sed -e '/^libdcam.so/d' -e '/^libv4l.so/d' -e '/^libv4l2.so/d' -e '/^libvid21394.so/d' +"$@" | sed -e '/^libdcam.so/d' -e '/^libv4l.so/d' -e '/^libv4l2cpi.so/d' -e '/^libvid21394.so/d' An advisory has been issued which should help the problem described in this bug report. This report is therefore being closed with a resolution of ERRATA. For more information on therefore solution and/or where to find the updated files, please follow the link below. You may reopen this bug report if the solution does not work for you. http://rhn.redhat.com/errata/RHBA-2011-1202.html |