From 364483d5c3a89b048b65805f57a4821c6212dd8a Mon Sep 17 00:00:00 2001 From: Stefan Knoblich Date: Mon, 11 Jan 2010 18:17:30 +0000 Subject: [PATCH] Add some debug output to track down a buildbot issue git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16244 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/asr_tts/mod_pocketsphinx/Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/mod/asr_tts/mod_pocketsphinx/Makefile b/src/mod/asr_tts/mod_pocketsphinx/Makefile index 28564003bf..c8f7ebc214 100644 --- a/src/mod/asr_tts/mod_pocketsphinx/Makefile +++ b/src/mod/asr_tts/mod_pocketsphinx/Makefile @@ -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)'"