Changeset 1618

Show
Ignore:
Timestamp:
07/07/08 20:23:21 (3 months ago)
Author:
alo
Message:

--

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • cherokee/trunk/ChangeLog

    r1617 r1618  
    112008-07-07  Alvaro Lopez Ortega  <alvaro@alobbs.com> 
     2 
     3        * cherokee/cherokee-panic: The call to type has been replaced with 
     4        a call to 'which' which is not shell dependant. It makes the 
     5        script stop depending on Bash. Fixes: 
     6        http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=489550 
    27 
    38        * themes/default/header.html: The 
  • cherokee/trunk/cherokee/cherokee-panic

    r1589 r1618  
    6969 
    7070        # Check the debugger 
    71         gdb=`type gdb 2>/dev/null | grep -v "not found" | cut -f3 -d " "
    72         dbx=`type dbx 2>/dev/null | grep -v "not found" | cut -f3 -d " "
     71        gdb=`which gdb
     72        dbx=`which dbx
    7373 
    7474        if [ x$gdb != x ]; then