summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorrussell <russell@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2006-08-15 21:44:46 +0000
committerrussell <russell@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2006-08-15 21:44:46 +0000
commit27feab959625e70b29ef07bffe3fbf0dab4f27f4 (patch)
tree0a54cc309974f2737477d10bd594e8627dedd5a8 /Makefile
parent67adf682b24532d9d8223722af32e0e44c0d9f2a (diff)
Merged revisions 1313 via svnmerge from
https://origsvn.digium.com/svn/zaptel/branches/1.2 ........ r1313 | russell | 2006-08-15 17:43:26 -0400 (Tue, 15 Aug 2006) | 4 lines 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/trunk@1314 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 8260f62..eed0945 100644
--- a/Makefile
+++ b/Makefile
@@ -11,9 +11,8 @@
HOSTCC=gcc
CC=gcc
-ifeq ($(PWD),)
PWD=$(shell pwd)
-endif
+
ifeq ($(DEB_HOST_GNU_TYPE),)
UNAME_M:=$(shell uname -m)
else