]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
Add some debug output to track down a buildbot issue
authorStefan Knoblich <stkn@freeswitch.org>
Mon, 11 Jan 2010 18:17:30 +0000 (18:17 +0000)
committerStefan Knoblich <stkn@freeswitch.org>
Mon, 11 Jan 2010 18:17:30 +0000 (18:17 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16244 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/asr_tts/mod_pocketsphinx/Makefile

index 28564003bf831b8eeb1607f4b8e85d484a4e00a4..c8f7ebc214d141c4c91b47db93843139106aad27 100644 (file)
@@ -44,18 +44,23 @@ $(POCKETSPHINX_LA): $(POCKETSPHINX_BUILDDIR)/Makefile
        $(TOUCH_TARGET)
 
 $(DESTDIR)$(grammardir)/model:
+       @echo "Grammar directory: '$(grammardir)'"
        mkdir -p $(DESTDIR)$(grammardir)/model
 
 $(DESTDIR)$(grammardir)/model/communicator:
        $(GETLIB) $(SPHINXMODEL).tar.gz
+       @echo "Grammar directory: '$(grammardir)'"
        mkdir -p $(DESTDIR)$(grammardir)/model/communicator
        cp -rp $(switch_srcdir)/libs/Communicator_semi_40.cd_semi_6000/* $(DESTDIR)$(grammardir)/model/communicator
 
 $(DESTDIR)$(grammardir)/model/wsj1:
+       @echo "Grammar directory: '$(grammardir)'"
        mkdir -p $(DESTDIR)$(grammardir)/model/wsj1
        cp -rp $(POCKETSPHINX_DIR)/model/hmm/wsj1/* $(DESTDIR)$(grammardir)/model/wsj1
 
 dictionary:
+       @echo "Grammar directory: '$(grammardir)'"
        @cp -f $(POCKETSPHINX_DIR)/model/lm/cmudict.0.6d $(DESTDIR)$(grammardir)/default.dic
 
 local_install: $(DESTDIR)$(grammardir)/model $(DESTDIR)$(grammardir)/model/communicator $(DESTDIR)$(grammardir)/model/wsj1 dictionary
+       @echo "Grammar directory: '$(grammardir)'"