[EMAIL PROTECTED] make
test -d ../../cedet-1.0beta2b -a -d ../../elib
rm -f *.elc jde-compile-script-init
echo "(add-to-list 'load-path \".\")" > jde-compile-script-init
echo "(add-to-list 'load-path \"../../elib\")" >>jde-compile-script-init
echo "(setq debug-on-error t)" >> jde-compile-script-init
echo "(load-file \"../../cedet-1.0beta2b/common/cedet.el\")" >> jde-compile-script-init
echo "(require 'jde-compat)" >> jde-compile-script-init
echo "(require 'jde)" >>jde-compile-script-init
if test `echo "emacs" | grep -w xemacs` ; \
then emacs -batch -l jde-compile-script-init -f batch-byte-compile `echo *.el` ; \
else emacs -batch -l jde-compile-script-init \
-f batch-byte-compile `ls -1 *.el | egrep -v 'jde-xemacs.el'`; \
fi;
*** Error code 1
make: Fatal error: Command failed for target `all'
Anyone else seen this? It succeeds for me with Cygwin /bin/make.
It works if I change
if test `echo "$(EMACS)" | grep -w xemacs` ; \
to
if test \`echo "$(EMACS)" | grep -w xemacs\` ; \
or simply to
if echo "$(EMACS)" | grep -w xemacs ; \
-- Ed
