From 772edc683275e2bc6a1ed4d556ca060855b628e9 Mon Sep 17 00:00:00 2001 From: "cbiesinger%web.de" Date: Tue, 17 Feb 2004 23:24:46 +0000 Subject: [PATCH] bug 230598, sort the showrev output, to avoid complaining about missing patches that are really already installed, patch by p.boven@chello.nl (Paul Boven) r=roland.mainz@nrubsig.org sr=bz a=chofmann --- xpfe/bootstrap/init.d/moz_patch_checker.dtksh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xpfe/bootstrap/init.d/moz_patch_checker.dtksh b/xpfe/bootstrap/init.d/moz_patch_checker.dtksh index a103ba98edc..9ea663ca4df 100644 --- a/xpfe/bootstrap/init.d/moz_patch_checker.dtksh +++ b/xpfe/bootstrap/init.d/moz_patch_checker.dtksh @@ -41,7 +41,7 @@ export PATH=/usr/xpg4/bin:/usr/sbin:/usr/bin # Enumerate installed patches enumerate_patch_list() { - showrev -p | grep "^Patch: " + showrev -p | sort -n |grep "^Patch: " #cat patchlist.txt | grep "^Patch: " }