Changeset 2866 for stable/0.7/prepare_new_stable
- Timestamp:
- Sep 8, 2013 12:27:09 PM (7 years ago)
- Location:
- stable/0.7
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable/0.7
- Property svn:mergeinfo changed
/trunk merged: 2840-2841,2861-2863,2865
- Property svn:mergeinfo changed
-
stable/0.7/prepare_new_stable
r2839 r2866 330 330 # Construct a build directory name. 331 331 332 top BuildDir=`echo $srcProj | sed -e 's|.*/\([^/]*\)$|\1|'`333 topBuildDir=${top BuildDir}-${newVersion}332 topProjName=`echo $srcProj | sed -e 's|.*/\([^/]*\)$|\1|'` 333 topBuildDir=${topProjName}-${newVersion} 334 334 echo "Build directory.....: $topBuildDir" 335 335 … … 382 382 383 383 echo '' 384 bak_files=`find $srcProj -name 'configure.ac'` 384 if test -d $topProjName ; then 385 bak_files=`find $topProjName -name 'configure.ac'` 386 fi 385 387 if test -e configure.ac ; then 386 388 bak_files="$bak_files configure.ac" … … 408 410 # add config_proj_default.h.bak to the list of files to be restored. 409 411 410 srcProjUC=`echo $srcProj | tr '[a-z]' '[A-Z]'` 411 configFileLoc=`find $srcProj -name .svn -prune -o -name 'config_*_default.h' -print` 412 topProjNameUC=`echo $topProjName | tr '[a-z]' '[A-Z]'` 413 if test -d $topProjName ; then 414 configFileLoc=`find $topProjName -name .svn -prune -o -name 'config_*_default.h' -print` 415 fi 412 416 echo "config File Loc: $configFileLoc" 413 417 if test -n "$configFileLoc" ; then 414 versionSym=${ srcProjUC}_VERSION418 versionSym=${topProjNameUC}_VERSION 415 419 echo '' 416 420 echo "===> Updating $versionSym in $configFileLoc (if present)"
Note: See TracChangeset
for help on using the changeset viewer.