[asterisk-commits] qwell: branch 1.4 r87650 - /branches/1.4/channels/Makefile
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Oct 30 15:29:41 CDT 2007
Author: qwell
Date: Tue Oct 30 15:29:41 2007
New Revision: 87650
URL: http://svn.digium.com/view/asterisk?view=rev&rev=87650
Log:
Only try to clean out h323/ if the h323/Makefile exists.
Modified:
branches/1.4/channels/Makefile
Modified: branches/1.4/channels/Makefile
URL: http://svn.digium.com/view/asterisk/branches/1.4/channels/Makefile?view=diff&rev=87650&r1=87649&r2=87650
==============================================================================
--- branches/1.4/channels/Makefile (original)
+++ branches/1.4/channels/Makefile Tue Oct 30 15:29:41 2007
@@ -67,7 +67,7 @@
include h323/Makefile.ast
H323LDFLAGS+=-Wl,--version-script=h323/noexport.map
clean::
- $(MAKE) -C h323 clean
+ if [ -f h323/Makefile ]; then $(MAKE) -C h323 clean; fi
else
h323/libchanh323.a h323/Makefile.ast:
$(CMD_PREFIX) $(MAKE) -C h323
More information about the asterisk-commits
mailing list