From: Michael Jerris Date: Mon, 6 Aug 2007 17:29:48 +0000 (+0000) Subject: fix for FSBUILD-9, allow recovery from libshout configure failure X-Git-Tag: v1.0-beta1~42 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=082a8a26d9b2b455ecd9c6846b5b742ce212c694;p=thirdparty%2Ffreeswitch.git 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 --- 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)