[mythtv-commits] Ticket #132: ./configure doesn't find xinit on all systems

MythTV mythtv at cvs.mythtv.org
Wed Jul 20 01:28:52 EDT 2005


#132: ./configure doesn't find xinit on all systems
--------------------+-------------------------------------------------------
       Id:  132     |      Status:  new                     
Component:  mythtv  |    Modified:  Wed Jul 20 05:28:52 2005
 Severity:  medium  |   Milestone:                          
 Priority:  major   |     Version:                          
    Owner:  ijr     |    Reporter:  xris                    
--------------------+-------------------------------------------------------
 the configure script from [6879] trunk looks for

 {{{
 /usr/bin/xinit
 }}}

 but at least in fc4, the file is at

 {{{
 /usr/X11R6/bin/xinit
 }}}

 easy fix is probably to change line 1846 from

 {{{
     if test -f /usr/bin/xinit ; then
 }}}

 to

 {{{
     if test -f /usr/bin/xinit -o -f /usr/X11R6/bin/xinit ; then
 }}}

 though it might be smarter to test the output of "which" when scanning for
 executables that are supposed to be located within $PATH.

 Anyway, didn't want to commit this myself lest I be screwing up someone
 else's ideas on how best to organize this script...

-- 
Ticket URL: <http://svn.mythtv.org/trac/ticket/132>
MythTV <http://www.mythtv.org/>
MythTV


More information about the mythtv-commits mailing list