From: <ssk...@vh...> - 2006-05-26 09:57:12
|
Author: sskracic Date: 2006-05-26 11:53:21 +0200 (Fri, 26 May 2006) New Revision: 1145 Modified: trunk/tools/misc/build-all.sh Log: Instead of last repository revision, RPMs are tagged with the last changed revision for the particular component. Modified: trunk/tools/misc/build-all.sh =================================================================== --- trunk/tools/misc/build-all.sh 2006-05-24 09:55:54 UTC (rev 1144) +++ trunk/tools/misc/build-all.sh 2006-05-26 09:53:21 UTC (rev 1145) @@ -196,7 +196,7 @@ # Gets svn revision for app whose tree starts in current dir. function get_svn_revision { SVN_REVISION="" - revision=$(svn info . | grep ^Revision | cut '-d ' -f2) + revision=$(svn info . | grep -i '^last changed rev' | cut '-d ' -f4) ccm_app=$(pwd | sed 's!.*/!!') if [ -z "$revision" ]; then echo "Could not find the most recent svn revision number for $ccm_app" |