From ff74cbc116d184cff5f7e85cbe00a19f4490cdf9 Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" <kpfleming@digium.com> Date: Mon, 21 Aug 2006 13:47:45 +0000 Subject: [PATCH] replace a couple of bare 'make' with $(MAKE) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@40765 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- Makefile | 2 +- channels/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 -- GitLab