This is the mail archive of the guile@sourceware.cygnus.com mailing list for the Guile project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: configure


please find below a hacked autogen.sh that allows for libtool and
aclocal to have been installed w/ different PREFIX vars.  (such is the
case on my system where i use the vendor aclocal, but a self-installed
(newer) libtool.)

thi


--------------------
#!/bin/sh

[ -f GUILE-VERSION ] || {
  echo "autogen.sh: run this command only at the top of a Guile source tree."
  exit 1
}

libtool=`set \`type libtool\` ; echo $3`
libtool_prefix=`echo $libtool | sed 's|/bin/libtool||g'`

aclocal -I . -I ${libtool_prefix}/share/aclocal
autoheader
autoconf
automake

( echo "guile-readline..."; cd guile-readline; ./autogen.sh )
( echo "libltdl..."; cd libltdl; ./autogen.sh )

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]