[23419] in Source-Commits
/svn/athena r23073 - trunk/debathena/third/common
daemon@ATHENA.MIT.EDU (ghudson@MIT.EDU)
Sat Jul 12 00:24:42 2008
Date: Sat, 12 Jul 2008 00:24:08 -0400 (EDT)
From: ghudson@MIT.EDU
Message-Id: <200807120424.AAA22172@drugstore.mit.edu>
To: source-commits@MIT.EDU
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Author: ghudson
Date: 2008-07-12 00:24:07 -0400 (Sat, 12 Jul 2008)
New Revision: 23073
Modified:
trunk/debathena/third/common/debathenificator.sh
Log:
In debathenificator, check the correct variable when filtering out
debathena versions of source packages.
Modified: trunk/debathena/third/common/debathenificator.sh
===================================================================
--- trunk/debathena/third/common/debathenificator.sh 2008-07-11 20:24:52 UTC (rev 23072)
+++ trunk/debathena/third/common/debathenificator.sh 2008-07-12 04:24:07 UTC (rev 23073)
@@ -121,7 +121,7 @@
sed -n 's/^Version: \(.*\)$/\1/ p' | (
version='~~~'
while read -r newversion; do
- if [ $(expr "$version" : '.*debathena') = 0 ] && \
+ if [ $(expr "$newversion" : '.*debathena') = 0 ] && \
dpkg --compare-versions "$newversion" '>' "$version"; then
version=$newversion
fi