X-Git-Url: https://git.madduck.net/etc/ssh.git/blobdiff_plain/5f650f3dda69462f4563cdb7b06370ad422fd4ad..27d47dacec99c37422f99632c468b155dc0ab20a:/.ssh/Makefile diff --git a/.ssh/Makefile b/.ssh/Makefile index 1569b26..e57eeec 100644 --- a/.ssh/Makefile +++ b/.ssh/Makefile @@ -28,8 +28,16 @@ SSH_VERSION = $(shell ssh -V 2>&1) config: $(LOCAL_CONFIG) config.in cat $^ > $@ case "$(SSH_VERSION)" in \ + (OpenSSH_6.[012345678]*) \ + sed -ri -e 's,^.+\bCanonical.+$$,##UNSUPPORTED##&,' \ + -e 's,^.+\bIgnoreUnknown\b.+$$,##UNSUPPORTED##&,' \ + -e 's,^.+\bUpdateHostKeys\b.+$$,##UNSUPPORTED##&,' \ + -e 's,^Match host ,Host ,' \ + $@ \ + ;; \ (OpenSSH_6.[0123]*) \ sed -ri -e 's,^.+\bCanonical.+$$,##UNSUPPORTED##&,' \ + -e 's,^.+\bIgnoreUnknown\b.+$$,##UNSUPPORTED##&,' \ $@ \ ;; \ (OpenSSH_5.[012345]*) \