]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
fix libsoundtouch build dependencies after a configure failure (MODAPP-243)
authorMichael Jerris <mike@jerris.com>
Wed, 25 Mar 2009 19:34:37 +0000 (19:34 +0000)
committerMichael Jerris <mike@jerris.com>
Wed, 25 Mar 2009 19:34:37 +0000 (19:34 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@12783 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/applications/mod_soundtouch/Makefile

index 94e5519d38adc938e3165a054150aae07e342d18..c86b25578d838aa7c4c2f1578f73a637d07d0b99 100644 (file)
@@ -1,4 +1,3 @@
-
 VERSION=soundtouch-1.3.1
 DIRECTORY=$(switch_srcdir)/libs/$(VERSION)
 LA=$(DIRECTORY)/source/SoundTouch/.libs/libSoundTouch.a
@@ -10,10 +9,12 @@ DEFAULT_ARGS=--prefix=$(PREFIX) --disable-shared --with-pic
 
 include $(BASE)/build/modmake.rules
 
-$(DIRECTORY):
+$(DIRECTORY)/Makefile $(DIRECTORY)/config.status:
        $(GETLIB) $(VERSION).tar.gz
        cd $(DIRECTORY) && ./configure $(DEFAULT_ARGS) --enable-integer-samples
+       $(TOUCH_TARGET)
 
-$(LA): $(DIRECTORY)
+$(LA): $(DIRECTORY)/Makefile $(DIRECTORY)/config.status
        cd $(DIRECTORY) && $(MAKE)
        $(TOUCH_TARGET)
+