diff options
author | John Voltz <john.voltz@gmail.com> | 2008-04-07 19:26:02 +0000 |
---|---|---|
committer | John Voltz <john.voltz@gmail.com> | 2008-04-07 19:26:02 +0000 |
commit | 09351e5814b0ef5cc96f2d0b6fd2859de4927f05 (patch) | |
tree | 8d001c800f9873d6e6210b5247068f7c2773ca17 /package/festival/speech-tools | |
parent | 47a184e03c7b85db7b0151ef09f7d31c823c542a (diff) | |
download | buildroot-novena-09351e5814b0ef5cc96f2d0b6fd2859de4927f05.tar.gz buildroot-novena-09351e5814b0ef5cc96f2d0b6fd2859de4927f05.zip |
another minor installer fix for festival
Diffstat (limited to 'package/festival/speech-tools')
-rw-r--r-- | package/festival/speech-tools/speech-tools-1.2.96-beta-install.patch | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/package/festival/speech-tools/speech-tools-1.2.96-beta-install.patch b/package/festival/speech-tools/speech-tools-1.2.96-beta-install.patch index 1a03260f9..3cc47d344 100644 --- a/package/festival/speech-tools/speech-tools-1.2.96-beta-install.patch +++ b/package/festival/speech-tools/speech-tools-1.2.96-beta-install.patch @@ -36,11 +36,12 @@ - + @$(ECHO_N) "Install Scheme Libraries:" + @main=`pwd` ;\ -+ cp -a "$$main/../../lib" "$(DESTDIR)/usr/share/festival";\ ++ mkdir -p "$(DESTDIR)/usr/share/festival"; cp -a "$$main/../../lib" "$(DESTDIR)/usr/share/festival";\ + for i in `find "$(DESTDIR)/usr/share/festival/lib" -name Makefile`;\ + do \ + rm "$$i"; \ + done -+ - .link_main: - @$(MAKE) MADE_FROM_ABOVE=1 --no-print-directory -C '$(PROJECT_MAIN_DIR)' BIN=TOP/$(DIRNAME) LIBDIR=MAIN/TOP/$(PROJECT_LIBRARY_DIR) MAIN='$($(PROJECT_PREFIX)_HOME)' .link_main$(S)
\ No newline at end of file ++ + .link_main: + @$(MAKE) MADE_FROM_ABOVE=1 --no-print-directory -C '$(PROJECT_MAIN_DIR)' BIN=TOP/$(DIRNAME) LIBDIR=MAIN/TOP/$(PROJECT_LIBRARY_DIR) MAIN='$($(PROJECT_PREFIX)_HOME)' .link_main$(S) + |