[asterisk-commits] qwell: trunk r87651 - in /trunk: ./ channels/Makefile
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Oct 30 15:30:35 CDT 2007
Author: qwell
Date: Tue Oct 30 15:30:35 2007
New Revision: 87651
URL: http://svn.digium.com/view/asterisk?view=rev&rev=87651
Log:
Merged revisions 87650 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r87650 | qwell | 2007-10-30 15:29:41 -0500 (Tue, 30 Oct 2007) | 1 line
Only try to clean out h323/ if the h323/Makefile exists.
........
Modified:
trunk/ (props changed)
trunk/channels/Makefile
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/channels/Makefile
URL: http://svn.digium.com/view/asterisk/trunk/channels/Makefile?view=diff&rev=87651&r1=87650&r2=87651
==============================================================================
--- trunk/channels/Makefile (original)
+++ trunk/channels/Makefile Tue Oct 30 15:30:35 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