[svn-commits] trunk r1196 - /trunk/Makefile
svn-commits at lists.digium.com
svn-commits at lists.digium.com
Wed Jun 28 17:46:08 MST 2006
Author: russell
Date: Wed Jun 28 19:46:07 2006
New Revision: 1196
URL: http://svn.digium.com/view/zaptel?rev=1196&view=rev
Log:
fix make update for Qwell :)
Modified:
trunk/Makefile
Modified: trunk/Makefile
URL: http://svn.digium.com/view/zaptel/trunk/Makefile?rev=1196&r1=1195&r2=1196&view=diff
==============================================================================
--- trunk/Makefile (original)
+++ trunk/Makefile Wed Jun 28 19:46:07 2006
@@ -426,9 +426,9 @@
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 \
More information about the svn-commits
mailing list