Megatest

Check-in [af3460b16c]
Login
Overview
Comment:Removed merge droppings from installall.sh
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: af3460b16c395abba66de37569712ca4605d0395
User & Date: mrwellan on 2012-11-05 15:48:25
Other Links: manifest | tags
Context
2012-11-05
22:32
Got deploy 90% right (need only to get libuuid handled correctly) check-in: c29338ea06 user: matt tags: trunk
15:48
Removed merge droppings from installall.sh check-in: af3460b16c user: mrwellan tags: trunk
14:43
bumped version to v1.5114 check-in: 628e669a08 user: mrwellan tags: trunk, v1.5114
Changes

Modified utils/installall.sh from [ecff722e8e] to [7cbbf68d68].

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 json md5; 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







|







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 json md5; 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