/[guile]/guile/guile-core/autogen.sh
ViewVC logotype

Diff of /guile/guile-core/autogen.sh

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.11.2.2 by rlb, Mon Feb 25 04:26:24 2002 UTC revision 1.11.2.3 by ttn, Sun Mar 31 23:21:59 2002 UTC
# Line 1  Line 1 
1  #!/bin/sh  #!/bin/sh
2    # Usage: sh -x ./autogen.sh [WORKBOOK]
3    
4  set -e  set -e
5    
6  [ -f GUILE-VERSION ] || {  [ -f GUILE-VERSION ] || {
7    echo "autogen.sh: run this command only at the top of a Guile source tree."    echo "autogen.sh: run this command only at the top of guile-core."
8    exit 1    exit 1
9  }  }
10    
11    ######################################################################
12    ### Find workbook and make symlinks.
13    
14    workbook=../workbook                    # assume "cvs co hack"
15    test x$1 = x || workbook=$1
16    if [ ! -d $workbook ] ; then
17        echo "ERROR: could not find workbook dir"
18        echo "       re-run like so: $0 WORKBOOK"
19        exit 1
20    fi
21    : found workbook at $workbook
22    workbook=`(cd $workbook ; pwd)`
23    
24    workbookdistfiles="ANON-CVS HACKING INSTALL SNAPSHOTS"
25    for f in $workbookdistfiles ; do
26        rm -f $f
27        ln -s $workbook/build/dist-files/$f $f
28    done
29    rm -f examples/example.gdbinit
30    ln -s $workbook/build/dist-files/.gdbinit examples/example.gdbinit
31    ######################################################################
32    
33  ./guile-aclocal.sh  ./guile-aclocal.sh
34    
35  ######################################################################  ######################################################################
# Line 38  echo "guile-readline..." Line 61  echo "guile-readline..."
61    
62  echo "Now run configure and make."  echo "Now run configure and make."
63  echo "You must pass the \`--enable-maintainer-mode' option to configure."  echo "You must pass the \`--enable-maintainer-mode' option to configure."
64    
65    # autogen.sh ends here

Legend:
Removed from v.1.11.2.2  
changed lines
  Added in v.1.11.2.3

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26