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 --- res/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'res/Makefile') diff --git a/res/Makefile b/res/Makefile index bb7f90894..f4d0f4b1e 100644 --- a/res/Makefile +++ b/res/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_RES),$(patsubst %.c,%,$(wildcard res_*.c))) -- cgit v1.2.3