[dahdi-commits] tzafrir: linux/trunk r5646 - /linux/trunk/build_tools/live_dahdi

SVN commits to the DAHDI project dahdi-commits at lists.digium.com
Fri Jan 9 14:37:05 CST 2009


Author: tzafrir
Date: Fri Jan  9 14:37:04 2009
New Revision: 5646

URL: http://svn.digium.com/view/dahdi?view=rev&rev=5646
Log:
Fix pathes in live_dahdi (it is run from the base dir by default)

Also acknowledge an warning I'm not sure how to fix for now.

Modified:
    linux/trunk/build_tools/live_dahdi

Modified: linux/trunk/build_tools/live_dahdi
URL: http://svn.digium.com/view/dahdi/linux/trunk/build_tools/live_dahdi?view=diff&rev=5646&r1=5645&r2=5646
==============================================================================
--- linux/trunk/build_tools/live_dahdi (original)
+++ linux/trunk/build_tools/live_dahdi Fri Jan  9 14:37:04 2009
@@ -2,8 +2,8 @@
 
 set -e
 
-LINUX_DIR=${LINUX_DIR:=..}
-TOOLS_DIR=${TOOLS_DIR:=`(cd ../../dahdi-tools; pwd)`}
+LINUX_DIR=${LINUX_DIR:=.}
+TOOLS_DIR=${TOOLS_DIR:=`(cd ../dahdi-tools; pwd)`}
 DESTDIR=$PWD/live
 KVERS=${KVERS:-`uname -r`}
 MODULES_DIR="$DESTDIR/lib/modules/$KVERS/dahdi"
@@ -49,6 +49,8 @@
 }
 
 # Detect the modules used in the system:
+# This may an annoying warning when live_dahdi is run before
+# installation. Ignore it for now.
 for mod in `dahdi_drivers`; do
 	case "$mod" in
 		xpp_usb) 




More information about the dahdi-commits mailing list