Changeset 1618
- Timestamp:
- 07/07/08 20:23:21 (3 months ago)
- Files:
-
- cherokee/trunk/ChangeLog (modified) (1 diff)
- cherokee/trunk/cherokee/cherokee-panic (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
cherokee/trunk/ChangeLog
r1617 r1618 1 1 2008-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 2 7 3 8 * themes/default/header.html: The cherokee/trunk/cherokee/cherokee-panic
r1589 r1618 69 69 70 70 # 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` 73 73 74 74 if [ x$gdb != x ]; then