[svn-commits] russell: branch 1.2 r1313 - /branches/1.2/Makefile

svn-commits at lists.digium.com svn-commits at lists.digium.com
Tue Aug 15 14:43:26 MST 2006


Author: russell
Date: Tue Aug 15 16:43:26 2006
New Revision: 1313

URL: http://svn.digium.com/view/zaptel?rev=1313&view=rev
Log:
fix erroneous check to see if PWD was set before setting it in the Zaptel
Makefile.  It should always be set.  If not, it breaks the build when using
recursive calls to make. (issue #7733, tzafrir)

Modified:
    branches/1.2/Makefile

Modified: branches/1.2/Makefile
URL: http://svn.digium.com/view/zaptel/branches/1.2/Makefile?rev=1313&r1=1312&r2=1313&view=diff
==============================================================================
--- branches/1.2/Makefile (original)
+++ branches/1.2/Makefile Tue Aug 15 16:43:26 2006
@@ -7,9 +7,8 @@
 
 
 HOSTCC=gcc
-ifeq ($(PWD),)
 PWD:=$(shell pwd)
-endif
+
 # If you want to build for a kernel other than the current kernel, set KVERS
 ifndef KVERS
 KVERS:=$(shell uname -r)



More information about the svn-commits mailing list