From 9b207275fabb857a8ccf0337d13cc8e9b42a42a7 Mon Sep 17 00:00:00 2001 From: Jason Parker Date: Tue, 30 Oct 2007 20:30:35 +0000 Subject: 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. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@87651 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'channels/Makefile') diff --git a/channels/Makefile b/channels/Makefile index c2c8ddadf..d5e46b225 100644 --- a/channels/Makefile +++ b/channels/Makefile @@ -67,7 +67,7 @@ ifneq ($(wildcard h323/Makefile.ast),) 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 -- cgit v1.2.3