[svn-commits] tzafrir: linux/trunk r9630 - /linux/trunk/drivers/dahdi/Kbuild

SVN commits to the Digium repositories svn-commits at lists.digium.com
Sun Jan 16 11:21:19 CST 2011


Author: tzafrir
Date: Sun Jan 16 11:21:16 2011
New Revision: 9630

URL: http://svnview.digium.com/svn/dahdi?view=rev&rev=9630
Log:
Fixes accidental generation of drvers/dahdi/$(obj)

If we tell Kbuild (at least of some versions) that the host program is
$obj/makefw , it will attempt to create the full path of $(obj) for it
under the current $(obj).

Modified:
    linux/trunk/drivers/dahdi/Kbuild

Modified: linux/trunk/drivers/dahdi/Kbuild
URL: http://svnview.digium.com/svn/dahdi/linux/trunk/drivers/dahdi/Kbuild?view=diff&rev=9630&r1=9629&r2=9630
==============================================================================
--- linux/trunk/drivers/dahdi/Kbuild (original)
+++ linux/trunk/drivers/dahdi/Kbuild Sun Jan 16 11:21:16 2011
@@ -135,7 +135,7 @@
 $(obj)/pciradio.o: $(obj)/radfw.h
 $(obj)/tor2.o: $(obj)/tor2fw.h
 
-hostprogs-y := $(obj)/makefw
+hostprogs-y := makefw
 
 $(obj)/tor2fw.h: $(src)/tormenta2.rbt $(obj)/makefw 
 	$(obj)/makefw $< tor2fw > $@




More information about the svn-commits mailing list