[asterisk-commits] qwell: branch 1.4 r80304 - /branches/1.4/Makefile
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Aug 22 13:25:35 CDT 2007
Author: qwell
Date: Wed Aug 22 13:25:34 2007
New Revision: 80304
URL: http://svn.digium.com/view/asterisk?view=rev&rev=80304
Log:
Change a syntax that the GNU make in Solaris dislikes.
Modified:
branches/1.4/Makefile
Modified: branches/1.4/Makefile
URL: http://svn.digium.com/view/asterisk/branches/1.4/Makefile?view=diff&rev=80304&r1=80303&r2=80304
==============================================================================
--- branches/1.4/Makefile (original)
+++ branches/1.4/Makefile Wed Aug 22 13:25:34 2007
@@ -645,9 +645,7 @@
# last clean count we had
cleantest:
- @if ! cmp -s .cleancount .lastclean ; then \
- $(MAKE) clean;\
- fi
+ @cmp -s .cleancount .lastclean || $(MAKE) clean
$(SUBDIRS_UNINSTALL):
@$(MAKE) --no-print-directory -C $(@:-uninstall=) uninstall
More information about the asterisk-commits
mailing list