Changeset 26720
- Timestamp:
- 2013-01-15T16:23:47+13:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
other-projects/cascade-make/trunk/lib/cascade-lib.bash
r26627 r26720 231 231 232 232 233 opt_run_cmake() 234 { 235 local type=$1 236 local package=$2 237 local version=$3 238 local subdir=$4 239 local opt_target="" 240 241 if [ ! -z "$5" ] ; then 242 opt_target=$5 243 fi 244 245 if [ $type = "1" ] ; then 246 ( cd $package$version/$subdir ; \ 247 make $opt_target) 248 249 if [ $? != 0 ] ; then 250 echo " Error encountered running *make $target* stage of $progname" 251 exit 1 252 fi 253 fi 254 } 255 256 233 257 run_installclean() 234 258 {
Note:
See TracChangeset
for help on using the changeset viewer.