~ubuntu-branches/ubuntu/quantal/gclcvs/quantal

« back to all changes in this revision

Viewing changes to xbin/setup-tmptest

  • Committer: Bazaar Package Importer
  • Author(s): Camm Maguire
  • Date: 2004-06-24 15:13:46 UTC
  • Revision ID: james.westby@ubuntu.com-20040624151346-xh0xaaktyyp7aorc
Tags: 2.7.0-26
C_GC_OFFSET is 2 on m68k-linux

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
TMP=$1
 
3
TEST=$2
 
4
NQTHM=$3
 
5
 
 
6
 
 
7
if [ -d ${TMP} ] ; then rm -f ${TMP}/* ; else mkdir ${TMP} ;fi
 
8
        ln -s `pwd`/xbin/kcl ${TMP}
 
9
        ln -s ${HOME}/little.lisp ${TMP}
 
10
        (cd ${NQTHM} ; ln -s `pwd`/*.lisp ${TMP})
 
11
 
 
12
exit 0
 
13