emacs-pretest-bug
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Building 21.3 from CVS with TexInfo 4.5 installed


From: luis fernandes
Subject: Re: Building 21.3 from CVS with TexInfo 4.5 installed
Date: Wed, 5 Mar 2003 19:30:59 -0500

To recap, Solaris 2.8, building emacs 21.3 from CVS. The build was
stopping with this error:

Your tree does not include the compiled Lisp files.
You need to do `make bootstrap' to build Emacs.
Emacs now requires Texinfo version 4.2.
gmake: *** [maybe_bootstrap] Error 1

After deleting the ancient makeinfo binary in my path and installing
texinfo 4.5, I type "make bootstrap" and the build continues
until....

for el in /usr/local/src/emacs-21.3/lisp/emacs-lisp/byte-opt.el  
/usr/local/src/emacs-21.3/lisp/emacs-lisp/bytecomp.el  
/usr/local/src/emacs-21.3/lisp/subr.el  
/usr/local/src/emacs-21.3/lisp/progmodes/cc-mode.el  
/usr/local/src/emacs-21.3/lisp/progmodes/cc-vars.el $els; do \
  if test -f $el; \
  then \
    echo Compiling $el; \
    EMACSLOADPATH=/usr/local/src/emacs-21.3/lisp ../src/bootstrap-emacs -batch 
--no-site-file --multibyte -f batch-byte-compile-if-not-done $el || exit 1; \
  fi \
done
*** Error code 2
make: Fatal error: Command failed for target `compile'
Current working directory /usr/local/src/emacs-21.3/lisp
*** Error code 1
make: Fatal error: Command failed for target `bootstrap'

------------------------------------------------------------------------
#!/bin/zsh
# This wrapper automates the emacs build.  Emacs is installed in
# INSTALL_DIR. Links have to be made from this dir to /usr/local/bin

#This is the version of the emacs you are trying to build
EMACS_VERSION=21.3

#This is where emacs distro is unpacked
SRC_DIR=/usr/local/src/emacs-${EMACS_VERSION} 

#This is where it will be installed
INSTALL_DIR=/usr/local/emacs${EMACS_VERSION}

STARTT=`date`                                   # start-time: stats gathering

cd ${SRC_DIR}

export LD_LIBRARY_PATH=/usr/local/lib:/usr/openwin/lib:/usr/dt/lib

LD_RUN_PATH=/usr/local/lib:/usr/openwin/lib:/usr/dt/lib ./configure --with-x11 
--x-includes=/usr/X11/include --with-xpm --with-x-toolkit=motif 
--x-libraries=/usr/openwin/lib --prefix=${INSTALL_DIR}

./configure --with-x11 --x-includes=/usr/openwin/include --with-xpm 
--with-x-toolkit=motif --x-libraries=/usr/openwin/lib --prefix=${INSTALL_DIR}

LD_RUN_PATH=/usr/local/lib:/usr/openwin/lib:/usr/dt/lib gmake -j 2 -e install 
datadir=${INSTALL_DIR}/share libexecdir=${INSTALL_DIR}/libexec 
bindir=${INSTALL_DIR}/bin infodir=${INSTALL_DIR}/info 
mandir=/usr/local/man/manl manext=.l

cd ${SRC_DIR}

echo "START TIME: $STARTT"
echo -n "END TIME:"; date





reply via email to

[Prev in Thread] Current Thread [Next in Thread]