Megatest

Check-in [fb5ff46f53]
Login
Overview
Comment:Added matcable egg
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: fb5ff46f537e99519880e18a3226fe0a6cdb7b8d
User & Date: matt on 2012-10-21 18:09:29
Other Links: manifest | tags
Context
2012-10-21
18:10
Build all of e2fsprogs for now. Trimback later check-in: 57b95b420b user: mrwellan tags: trunk
18:09
Added matcable egg check-in: fb5ff46f53 user: matt tags: trunk
17:46
Partial implementation of deployable installer check-in: 64e3a5847c user: matt tags: trunk
Changes

Modified utils/installall.sh from [b6a291c65e] to [0724089bff].

75
76
77
78
79
80
81
82
83

84
85
86
87
88
89
90
    cd chicken-${CHICKEN_VERSION}
    make PLATFORM=linux PREFIX=$PREFIX
    make PLATFORM=linux PREFIX=$PREFIX install
    cd $BUILDHOME
fi

# Some eggs are quoted since they are reserved to Bash
for f in readline apropos base64 regex-literals format "regex-case" "test" coops trace csv dot-locking posix-utils posix-extras directory-utils hostinfo tcp rpc csv-xml fmt ; do
  if ! [[ -e $PREFIX/lib/chicken/6/$f.so ]];then

    chicken-install -deploy -prefix $DEPLOYTARG $PROX $f
  else
    echo Skipping install of egg $f as it is already installed
  fi
done

cd $BUILDHOME







|

>







75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
    cd chicken-${CHICKEN_VERSION}
    make PLATFORM=linux PREFIX=$PREFIX
    make PLATFORM=linux PREFIX=$PREFIX install
    cd $BUILDHOME
fi

# Some eggs are quoted since they are reserved to Bash
for f in matchable readline apropos base64 regex-literals format "regex-case" "test" coops trace csv dot-locking posix-utils posix-extras directory-utils hostinfo tcp rpc csv-xml fmt ; do
  if ! [[ -e $PREFIX/lib/chicken/6/$f.so ]];then
    chicken-install $PROX $f
    chicken-install -deploy -prefix $DEPLOYTARG $PROX $f
  else
    echo Skipping install of egg $f as it is already installed
  fi
done

cd $BUILDHOME