From 9f2a6516cffe0986e11c1d364c0e8a80311c7692 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Mon, 19 Jun 2006 00:14:16 +0000 Subject: don't blow up in the sub Makefiles if menuselect.makeopts is not present. This is valid in some cases, such as "make clean". git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@34738 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- codecs/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'codecs') diff --git a/codecs/Makefile b/codecs/Makefile index 42327b4e6..d4212a87d 100644 --- a/codecs/Makefile +++ b/codecs/Makefile @@ -11,7 +11,9 @@ # the GNU General Public License # -include ../menuselect.makeopts +ifneq ($(wildcard ../menuselect.makeopts),) + include ../menuselect.makeopts +endif SELECTED_MODS:=$(filter-out $(MENUSELECT_CODECS),$(patsubst %.c,%,$(wildcard codec_*.c))) -- cgit v1.2.3