CVS commit: src/crypto/external/bsd/openssh/bin/scp

2020-05-29 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri May 29 12:15:30 UTC 2020

Modified Files:
src/crypto/external/bsd/openssh/bin/scp: Makefile

Log Message:
delete previous and fix bug instead.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/crypto/external/bsd/openssh/bin/scp/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/crypto/external/bsd/openssh/bin/scp/Makefile
diff -u src/crypto/external/bsd/openssh/bin/scp/Makefile:1.4 src/crypto/external/bsd/openssh/bin/scp/Makefile:1.5
--- src/crypto/external/bsd/openssh/bin/scp/Makefile:1.4	Fri May 29 06:01:23 2020
+++ src/crypto/external/bsd/openssh/bin/scp/Makefile	Fri May 29 08:15:30 2020
@@ -1,9 +1,7 @@
-#	$NetBSD: Makefile,v 1.4 2020/05/29 10:01:23 kamil Exp $
+#	$NetBSD: Makefile,v 1.5 2020/05/29 12:15:30 christos Exp $
 
 BINDIR=/usr/bin
 
 PROG=	scp
 
-COPTS.scp.c += -Wno-format-nonliteral
-
 .include 



CVS commit: src/crypto/external/bsd/openssh/bin/scp

2020-05-29 Thread Kamil Rytarowski
Module Name:src
Committed By:   kamil
Date:   Fri May 29 10:01:23 UTC 2020

Modified Files:
src/crypto/external/bsd/openssh/bin/scp: Makefile

Log Message:
Specify -Wno-format-nonlitera for scp.c (OpenSSH)

Fixes build with Clang/LLVM.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/crypto/external/bsd/openssh/bin/scp/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/crypto/external/bsd/openssh/bin/scp/Makefile
diff -u src/crypto/external/bsd/openssh/bin/scp/Makefile:1.3 src/crypto/external/bsd/openssh/bin/scp/Makefile:1.4
--- src/crypto/external/bsd/openssh/bin/scp/Makefile:1.3	Sun Mar  1 20:59:52 2020
+++ src/crypto/external/bsd/openssh/bin/scp/Makefile	Fri May 29 10:01:23 2020
@@ -1,7 +1,9 @@
-#	$NetBSD: Makefile,v 1.3 2020/03/01 20:59:52 christos Exp $
+#	$NetBSD: Makefile,v 1.4 2020/05/29 10:01:23 kamil Exp $
 
 BINDIR=/usr/bin
 
 PROG=	scp
 
+COPTS.scp.c += -Wno-format-nonliteral
+
 .include