Changeset 13816 in project
- Timestamp:
- 03/18/09 14:37:24 (11 years ago)
- Location:
- chicken/trunk/scripts
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
chicken/trunk/scripts/makedist.scm
r13735 r13816 56 56 (command-line-arguments) 57 57 (lambda _ 58 (print "usage: makedist [--release] [-- test] [--make=PROGRAM] [--platform=PLATFORM] MAKEOPTION ...")58 (print "usage: makedist [--release] [--make=PROGRAM] [--platform=PLATFORM] MAKEOPTION ...") 59 59 (exit 1))) ) 60 60 -
chicken/trunk/scripts/test-dist.sh
r13815 r13816 2 2 ### test-dist.sh - test distribution tarball 3 3 # 4 # usage: test-dist.sh [-bootstrap] PLATFORM TARBALL4 # usage: test-dist.sh [-bootstrap] PLATFORM [TARBALL] 5 5 6 6 set -e … … 16 16 17 17 if test $# \!= 2; then 18 echo "usage: test-dist.sh [-bootstrap] PLATFORM TARBALL"18 echo "usage: test-dist.sh [-bootstrap] PLATFORM [TARBALL]" 19 19 exit 1 20 20 fi … … 37 37 38 38 if test -n "$bootstrap"; then 39 $makeprg PLATFORM=$platform PREFIX=`pwd $pwdopts` DEBUGBUILD=1 bootstrap 40 $makeprg PLATFORM=$platform PREFIX=`pwd $pwdopts` DEBUGBUILD=1 CHICKEN=./chicken-boot confclean all install 39 $makeprg PLATFORM=$platform PREFIX=$prefix DEBUGBUILD=1 bootstrap 40 $makeprg PLATFORM=$platform PREFIX=$prefix DEBUGBUILD=1 CHICKEN=./chicken-boot confclean all install 41 fi 42 43 # if no tarball given, create one 44 if test -z "$tarball"; then 45 $makeprg PLATFORM=$platform PREFIX=$prefix DEBUGBUILD=1 CSI=`$prefix/bin/csi` dist 46 tarball=chicken-`cat buildversion`.tar.gz 41 47 fi 42 48
Note: See TracChangeset
for help on using the changeset viewer.