[asterisk-commits] kpfleming: trunk r40765 - in /trunk: Makefile channels/Makefile

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Mon Aug 21 06:47:45 MST 2006


Author: kpfleming
Date: Mon Aug 21 08:47:45 2006
New Revision: 40765

URL: http://svn.digium.com/view/asterisk?rev=40765&view=rev
Log:
replace a couple of bare 'make' with $(MAKE)

Modified:
    trunk/Makefile
    trunk/channels/Makefile

Modified: trunk/Makefile
URL: http://svn.digium.com/view/asterisk/trunk/Makefile?rev=40765&r1=40764&r2=40765&view=diff
==============================================================================
--- trunk/Makefile (original)
+++ trunk/Makefile Mon Aug 21 08:47:45 2006
@@ -163,7 +163,7 @@
 endif
 
 ifeq ($(OSARCH),FreeBSD)
-  BSDVERSION=$(shell make -V OSVERSION -f /usr/share/mk/bsd.port.subdir.mk)
+  BSDVERSION=$(shell $(MAKE) -V OSVERSION -f /usr/share/mk/bsd.port.subdir.mk)
   ASTCFLAGS+=$(shell if test $(BSDVERSION) -lt 500016 ; then echo "-D_THREAD_SAFE"; fi)
   AST_LIBS+=$(shell if test  $(BSDVERSION) -lt 502102 ; then echo "-lc_r"; else echo "-pthread"; fi)
 endif

Modified: trunk/channels/Makefile
URL: http://svn.digium.com/view/asterisk/trunk/channels/Makefile?rev=40765&r1=40764&r2=40765&view=diff
==============================================================================
--- trunk/channels/Makefile (original)
+++ trunk/channels/Makefile Mon Aug 21 08:47:45 2006
@@ -64,7 +64,7 @@
 
 clean::
 	rm -f busy.h ringtone.h gentone
-	make -C misdn clean
+	$(MAKE) -C misdn clean
 
 ifneq ($(wildcard $(PWD)/Makefile.ast),)
   include $(PWD)/Makefile.ast



More information about the asterisk-commits mailing list