- Timestamp:
- Dec 6, 2010, 7:28:47 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/deploy.sh.in
r38 r308 168 168 yule_data="@mydataroot@" 169 169 170 # The temporary directory to use. Default is '/tmp', but some 171 # sites may mount this 'noexec'. 172 # 173 temp_dir="/tmp" 174 170 175 #__END_CUT__ 171 176 … … 219 224 export yule_conf 220 225 export yule_data 226 export temp_dir 221 227 222 228 # dialog … … 642 648 ;; 643 649 650 --tmpdir | -tmpdir) 651 opt_prev=temp_dir 652 ;; 653 --tmpdir=* | -tmpdir=*) 654 temp_dir="$optarg"; export temp_dir 655 ;; 656 644 657 -o | --logfile | -logfile) 645 658 opt_prev=logfile -
trunk/dsys/comBUILD
r27 r308 70 70 fi 71 71 72 tmpdir=`eval echo " /tmp/sh_${src_version}_${arch}_${format}_$$"`72 tmpdir=`eval echo "${temp_dir}/sh_${src_version}_${arch}_${format}_$$"` 73 73 74 74 #--------------------------------------------------------------------- -
trunk/dsys/comINSTALL
r65 r308 169 169 #--------------------------------------------------------------------- 170 170 171 tmpdir=`eval echo " /tmp/sh_${src_version}_${arch}_${format}_$$"`171 tmpdir=`eval echo "${temp_dir}/sh_${src_version}_${arch}_${format}_$$"` 172 172 173 173 if test x"$simulate" = x0 -
trunk/dsys/comUNINSTALL
r27 r308 79 79 #--------------------------------------------------------------------- 80 80 81 tmpdir=`eval echo " /tmp/sh_${src_version}_${arch}_${format}_$$"`81 tmpdir=`eval echo "${temp_dir}/sh_${src_version}_${arch}_${format}_$$"` 82 82 83 83 if test x"$simulate" = x0
Note:
See TracChangeset
for help on using the changeset viewer.