diff options
author | des <des@FreeBSD.org> | 2003-09-19 11:29:51 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2003-09-19 11:29:51 +0000 |
commit | 21906911ceb5b156c06cf78f9831a1042ab0f844 (patch) | |
tree | 211782306ad56783be36dde83c548434cf2ca4a5 /crypto | |
parent | 82c0b53020070a0424b746e08abdad4ff4d9ea61 (diff) | |
download | FreeBSD-src-21906911ceb5b156c06cf78f9831a1042ab0f844.zip FreeBSD-src-21906911ceb5b156c06cf78f9831a1042ab0f844.tar.gz |
Fix broken shell code.
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/openssh/FREEBSD-tricks | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/openssh/FREEBSD-tricks b/crypto/openssh/FREEBSD-tricks index fdf78c7..4ae5439 100644 --- a/crypto/openssh/FREEBSD-tricks +++ b/crypto/openssh/FREEBSD-tricks @@ -2,7 +2,7 @@ # Shell code to remove FreeBSD tags before merging grep -rl '\$Fre.BSD:' . >tags -while read f < tags ; do +cat tags | while read f ; do sed -i.orig -e '/\$Fre.BSD:/d' $f done @@ -11,7 +11,7 @@ cat tags | xargs perl -n -i.orig -e 'print; s/\$(Id|OpenBSD): [^\$]*\$/\$FreeBSD\$/ && print' # Shell code to reexpand FreeBSD tags -while read f < tags ; do +cat tags | while read f ; do id=$(cvs diff $f | grep '\$Fre.BSD:' | sed 's/.*\(\$Fre.BSD:.*\$\).*/\1/') ; if [ -n "$id" ] ; then sed -i.orig -e "s@\\\$Fre.BSD\\\$@$id@" $f ; |