Megatest

Check-in [2f7d94848b]
Login
Overview
Comment:blah
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | v1.66-ubuntu
Files: files | file ages | folders
SHA1: 2f7d94848b24bab8702d82654351d25711cc89b6
User & Date: matt on 2020-05-21 23:02:30
Other Links: branch diff | manifest | tags
Context
2020-05-21
23:49
Improved built-in build but still not fully operational on Ubuntu check-in: 73dfd99fe6 user: matt tags: v1.66-ubuntu
23:02
blah check-in: 2f7d94848b user: matt tags: v1.66-ubuntu
22:57
Built-in chicken build mostly working on Ubuntu now check-in: 875a0b48c6 user: matt tags: v1.66-ubuntu
Changes

Modified configure from [0bbcc444fe] to [cebf8d25b4].

21
22
23
24
25
26
27








28
29
30
31
32
33
34

if [[ "$1"x == "x" ]];then
    PREFIX=$PWD
else
    PREFIX=$1
fi










#======================================================================
# Configure stuff needed for eggs
#======================================================================

function configure_dependencies () {








>
>
>
>
>
>
>
>







21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42

if [[ "$1"x == "x" ]];then
    PREFIX=$PWD
else
    PREFIX=$1
fi

#======================================================================
# Required software checks
#======================================================================

if [[ ! $(type fossil) ]];then
    echo "Please install fossil from http://fossil-scm.org"
    exit 1
fi

#======================================================================
# Configure stuff needed for eggs
#======================================================================

function configure_dependencies () {