From 566faad01ad63d29cbb27c7f1f0b9169c3dacc85 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Tue, 15 Jul 2003 20:20:39 +0000 Subject: [PATCH] (fixfile): Change grep pattern again, since the previous fix didn't work (there was another trailing $). Use '[$]' to escape the $s. --- config/srclist-update | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/srclist-update b/config/srclist-update index 6daad83ab3..ffb5574c99 100755 --- a/config/srclist-update +++ b/config/srclist-update @@ -1,5 +1,5 @@ #!/bin/sh -# $Id: srclist-update,v 1.8 2003-07-15 12:47:27 karl Exp $ +# $Id: srclist-update,v 1.9 2003-07-15 20:20:39 eggert Exp $ # # Check for files in directory $1 being up to date, according to the # list on stdin. Don't actually make any changes, just show the diffs. @@ -74,7 +74,7 @@ fixfile() \ *) cat $1;; esac \ - | grep -v '\$Id: srclist-update,v 1.8 2003-07-15 12:47:27 karl Exp $2 + | grep -v '[$]Id:.*[$]' >&$2 } -- 2.30.2