From: Kevin P. Fleming Date: Mon, 21 Aug 2006 13:47:45 +0000 (+0000) Subject: replace a couple of bare 'make' with $(MAKE) X-Git-Tag: 1.4.0-beta1~343 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ff74cbc116d184cff5f7e85cbe00a19f4490cdf9;p=thirdparty%2Fasterisk.git replace a couple of bare 'make' with $(MAKE) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@40765 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/Makefile b/Makefile index b4a8019b4e..2fb03eb54b 100644 --- a/Makefile +++ b/Makefile @@ -163,7 +163,7 @@ ifeq ($(PROC),ppc) 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 diff --git a/channels/Makefile b/channels/Makefile index ad898681a6..9cb7482fbc 100644 --- a/channels/Makefile +++ b/channels/Makefile @@ -64,7 +64,7 @@ include $(ASTTOPDIR)/Makefile.moddir_rules 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