Changeset 13425
- Timestamp:
- Feb 2, 2010, 12:58:40 AM (11 years ago)
- Location:
- release/1.4/source/scripts
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
release/1.4/source/scripts
-
Property
svn:mergeinfo
set to
/trunk/source/scripts merged eligible
-
Property
svn:mergeinfo
set to
-
release/1.4/source/scripts/ccl
r13112 r13425 1 1 #!/bin/sh 2 # 2 3 3 # Change the definition of CCL_DEFAULT_DIRECTORY below to refer to 4 # your OpenMCL installation directory. 5 # Any definition of CCL_DEFAULT_DIRECTORY already present in the environment 6 # takes precedence over definitions made below. 4 # your Clozure CL installation directory. The lisp will use this 5 # environment variable to set up translations for the CCL: logical 6 # host. 7 8 # Any definition of CCL_DEFAULT_DIRECTORY already present in the 9 # environment takes precedence over definition made below. 7 10 8 11 if [ -z "$CCL_DEFAULT_DIRECTORY" ]; then … … 10 13 fi 11 14 12 export CCL_DEFAULT_DIRECTORY 13 14 # This is shorter (& easier to type), making the invocation below 15 # a little easier to read. 16 17 DD=${CCL_DEFAULT_DIRECTORY} 18 19 # If you don't want to guess the name of the OpenMCL kernel on 15 # If you don't want to guess the name of the lisp kernel on 20 16 # every invocation (or if you want to use a kernel with a 21 17 # non-default name), you might want to uncomment and change 22 18 # the following line: 23 19 #OPENMCL_KERNEL=some_name 24 25 # Set the CCL_DEFAULT_DIRECTORY environment variable;26 # the lisp will use this to setup translations for the CCL: logical host.27 20 28 21 if [ -z "$OPENMCL_KERNEL" ]; then … … 51 44 fi 52 45 53 exec ${DD}/${OPENMCL_KERNEL} "$@" 46 export CCL_DEFAULT_DIRECTORY 47 exec ${CCL_DEFAULT_DIRECTORY}/${OPENMCL_KERNEL} "$@" 54 48 -
release/1.4/source/scripts/ccl64
r13112 r13425 2 2 # 3 3 # Change the definition of CCL_DEFAULT_DIRECTORY below to refer to 4 # your OpenMCL installation directory. 5 # Any definition of CCL_DEFAULT_DIRECTORY already present in the environment 6 # takes precedence over definitions made below. 4 # your Clozure CL installation directory. The lisp will use this 5 # environment variable to set up translations for the CCL: logical 6 # host. 7 8 # Any definition of CCL_DEFAULT_DIRECTORY already present in the 9 # environment takes precedence over definition made below. 7 10 8 11 if [ -z "$CCL_DEFAULT_DIRECTORY" ]; then 9 12 CCL_DEFAULT_DIRECTORY=/usr/local/src/ccl 10 13 fi 11 12 # This is shorter (& easier to type), making the invocation below13 # a little easier to read.14 15 DD=${CCL_DEFAULT_DIRECTORY}16 14 17 15 # If you don't want to guess the name of the OpenMCL kernel on … … 20 18 # the following line: 21 19 #OPENMCL_KERNEL=some_name 22 23 # Set the CCL_DEFAULT_DIRECTORY environment variable;24 # the lisp will use this to setup translations for the CCL: logical host.25 20 26 21 if [ -z "$OPENMCL_KERNEL" ]; then … … 83 78 fi 84 79 85 CCL_DEFAULT_DIRECTORY=${DD} exec ${DD}/${OPENMCL_KERNEL} "$@" 80 export CCL_DEFAULT_DIRECTORY 81 exec ${CCL_DEFAULT_DIRECTORY}/${OPENMCL_KERNEL} "$@" 86 82
Note: See TracChangeset
for help on using the changeset viewer.