[svn-commits] dlee: branch 11 r373047 - /branches/11/main/Makefile

SVN commits to the Digium repositories svn-commits at lists.digium.com
Thu Sep 13 15:04:54 CDT 2012


Author: dlee
Date: Thu Sep 13 15:04:51 2012
New Revision: 373047

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=373047
Log:
Fixed make clean when configured --disable-asteriskssl

Modified:
    branches/11/main/Makefile

Modified: branches/11/main/Makefile
URL: http://svnview.digium.com/svn/asterisk/branches/11/main/Makefile?view=diff&rev=373047&r1=373046&r2=373047
==============================================================================
--- branches/11/main/Makefile (original)
+++ branches/11/main/Makefile Thu Sep 13 15:04:51 2012
@@ -278,7 +278,10 @@
 endif
 
 clean::
-	rm -f asterisk libasteriskssl.o $(ASTSSL_LIB) $(ASTSSL_LIB).*
+	rm -f asterisk libasteriskssl.o
+ifeq ($(AST_ASTERISKSSL),yes)
+	rm -f $(ASTSSL_LIB) $(ASTSSL_LIB).*
+endif
 	rm -f asterisk.exports libasteriskssl.exports
 	@if [ -f editline/Makefile ]; then $(MAKE) -C editline distclean ; fi
 	@$(MAKE) -C stdtime clean




More information about the svn-commits mailing list