Guile 1.5.6 beta available for testing.

Thien-Thi Nguyen ttn@glug.org
Tue, 05 Mar 2002 15:41:05 -0800


   From: Rob Browning <rlb@defaultvalue.org>
   Date: Tue, 05 Mar 2002 17:24:23 -0600

     * Remove automake and autoconf from your path, or turn off their
       execute bits, or something.  (Users must be able to build from the
       tarfile without installing those tools.)

absent system dir write privs, here's "something" you can do:

  mkdir /tmp/stub
  cat > /tmp/stub/do-nothing <<EOF
  #!/bin/sh
  echo warning: $0 called
  exit 0
  EOF
  chmod +x /tmp/stub/do-nothing
  ln /tmp/stub/do-nothing /tmp/stub/automake
  ln /tmp/stub/do-nothing /tmp/stub/autoconf	# etc
  PATH=/tmp/stub:$PATH

thi