summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorrussell <russell@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2006-06-29 00:46:07 +0000
committerrussell <russell@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2006-06-29 00:46:07 +0000
commiteaf04219d025fc66d403e0750ad05f70a2742317 (patch)
tree9d0e3c4ba3994c7ea90ecb20c54601d529514513 /Makefile
parent41dbdda75c861b28f51ed78027a4178c375c4316 (diff)
fix make update for Qwell :)
git-svn-id: http://svn.digium.com/svn/zaptel/trunk@1196 5390a7c7-147a-4af0-8ec9-7488f05a26cb
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 09f5083..5cfc270 100644
--- a/Makefile
+++ b/Makefile
@@ -426,9 +426,9 @@ update:
echo "Updating from Subversion..." ; \
svn update | tee update.out; \
rm -f .version; \
- if [ `$(GREP) -c ^C update.out` -gt 0 ]; then \
+ if [ `grep -c ^C update.out` -gt 0 ]; then \
echo ; echo "The following files have conflicts:" ; \
- $(GREP) ^C update.out | cut -b4- ; \
+ grep ^C update.out | cut -b4- ; \
fi ; \
rm -f update.out; \
else \