From 082a8a26d9b2b455ecd9c6846b5b742ce212c694 Mon Sep 17 00:00:00 2001 From: Michael Jerris Date: Mon, 6 Aug 2007 17:29:48 +0000 Subject: [PATCH] fix for FSBUILD-9, allow recovery from libshout configure failure git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5572 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/formats/mod_shout/Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/mod/formats/mod_shout/Makefile b/src/mod/formats/mod_shout/Makefile index 0c9fe41438..5f5a793324 100644 --- a/src/mod/formats/mod_shout/Makefile +++ b/src/mod/formats/mod_shout/Makefile @@ -27,17 +27,21 @@ $(LOCAL_OBJS): $(LOCAL_SOURCES) $(LAME_DIR): $(GETLIB) $(LAME).tar.gz + +$(LAME_DIR)/Makefile: $(LAME_DIR) cd $(LAME_DIR) && ./configure $(DEFAULT_ARGS) --disable-decoder -$(LAMELA): $(LAME_DIR) +$(LAMELA): $(LAME_DIR)/Makefile cd $(LAME_DIR) && $(MAKE) $(TOUCH_TARGET) $(SHOUT_DIR): $(GETLIB) $(SHOUT).tar.gz + +$(SHOUT_DIR)/Makefile: $(SHOUT_DIR) cd $(SHOUT_DIR) && ./configure $(DEFAULT_ARGS) --with-speex=no -$(SHOUTLA): $(SHOUT_DIR) +$(SHOUTLA): $(SHOUT_DIR)/Makefile cd $(SHOUT_DIR) && $(MAKE) $(TOUCH_TARGET)