summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorrussell <russell@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2006-08-15 21:43:26 +0000
committerrussell <russell@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2006-08-15 21:43:26 +0000
commited669308b81c3f0d0c892dc07b066d9ccec83090 (patch)
treea66f94921eb3484cee83e13e38331b7b3a70c3ba /Makefile
parent0561490363b16d18998243c41cd829423d4a3b14 (diff)
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) git-svn-id: http://svn.digium.com/svn/zaptel/branches/1.2@1313 5390a7c7-147a-4af0-8ec9-7488f05a26cb
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index e9672a2..6ce79f6 100644
--- a/Makefile
+++ b/Makefile
@@ -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)