diff options
Diffstat (limited to 'crypto/openssh/FREEBSD-tricks')
-rw-r--r-- | crypto/openssh/FREEBSD-tricks | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/crypto/openssh/FREEBSD-tricks b/crypto/openssh/FREEBSD-tricks deleted file mode 100644 index 480bffc..0000000 --- a/crypto/openssh/FREEBSD-tricks +++ /dev/null @@ -1,14 +0,0 @@ -# $FreeBSD$ - -# Shell code to remove FreeBSD tags before merging -grep -rl '\$Fre[e]BSD:' . | grep -v FREEBSD >tags -cat tags | while read f ; do - sed -i.orig -e '/\$Fre[e]BSD:/d' $f -done - -# Shell + Perl code to add FreeBSD tags wherever an OpenBSD or Id tag occurs -cat tags | -xargs perl -n -i.orig -e 'print; s/\$(Id|OpenBSD): [^\$]*/\$FreeBSD/ && print' - -# Diff against vendor branch -svn diff --no-diff-deleted --old=$FSVN/vendor-crypto/openssh/dist/ --new=. |