Re: Announcing Emacspeak 25.0 (ActiveDog)
"James R. Van Zandt" <[email protected]> Fri, 24 Nov 2006 15:00:13 -0500
| Newsgroups | gmane.emacs.emacspeak.general,gmane.linux.redhat.blinux.general,gmane.linux.redhat.blinux.announce |
|---|---|
| Message-ID | <[email protected]> |
Raman -
I downloaded the new version of emacspeak, but it failed to build
because .svn isn't included in the tarball:
ls .svn> /dev/null && make README
ls: .svn: No such file or directory
make[1]: *** [config] Error 2
This change lets the build continue:
--- Makefile-orig 2006-11-24 14:56:47.000000000 -0500
+++ Makefile 2006-11-24 14:56:59.000000000 -0500
@@ -244,7 +244,7 @@
# {{{ User level target-- config
config:
- ls .svn> /dev/null && make README
+ if [ -e .svn ]; then make README; fi
cd etc; $(MAKE) config SRC=$(SRC)
cd lisp; $(MAKE) config
@echo "Configured emacspeak in directory $(SRC). Now type make emacspeak"
- Jim Van Zandt