> Patch attached. My editor trims trailing whitespace from lines and I think
> that is the cause of the differences on some lines which were unrelated to my
> changes.
Didn't look over this whole patch, but looks like there's a small bug right
here:
libraw3=`ls /usr/lib64/libraw1394* 2> /dev/null | head -n 1`
- if test x"$libraw1" != x"" -o x"$libraw2" != x"" -o x"$libraw3" != x""
; then
+ libraw3=`ls /usr/local/lib64/libraw1394* 2> /dev/null | head -n 1`
+ if test x"$libraw1" != x"" -o x"$libraw2" != x"" -o x"$libraw3" != x""
-o x"$libraw4" != x"" ; then
firewire_cable_box="yes"
fi
You duplicate libraw3 instead of setting libraw4 but then test for libraw4.
--
Chris
_______________________________________________
mythtv-dev mailing list
[email protected]
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-dev