[svn-commits] branch 1.2 - r855 /branches/1.2/Makefile

svn-commits at lists.digium.com svn-commits at lists.digium.com
Tue Dec 13 00:08:14 CST 2005


Author: kpfleming
Date: Tue Dec 13 00:08:13 2005
New Revision: 855

URL: http://svn.digium.com/view/zaptel?rev=855&view=rev
Log:
properly escape shell variable (from asterisk-users mailing list post)

Modified:
    branches/1.2/Makefile

Modified: branches/1.2/Makefile
URL: http://svn.digium.com/view/zaptel/branches/1.2/Makefile?rev=855&r1=854&r2=855&view=diff
==============================================================================
--- branches/1.2/Makefile (original)
+++ branches/1.2/Makefile Tue Dec 13 00:08:13 2005
@@ -16,7 +16,7 @@
     KSRC:=/lib/modules/$(KVERS)/build
   else
     KSRC_SEARCH_PATH:=/usr/src/linux-2.4 /usr/src/linux
-    KSRC:=$(shell for dir in $(KSRC_SEARCH_PATH); do if [ -d $$dir ]; then echo $dir; break; fi; done)
+    KSRC:=$(shell for dir in $(KSRC_SEARCH_PATH); do if [ -d $$dir ]; then echo $$dir; break; fi; done)
   endif
 endif
 KINCLUDES:=$(KSRC)/include



More information about the svn-commits mailing list