svn commit: r274323 - stable/10/usr.sbin/pw

Ian Lepore ian at FreeBSD.org
Sun Nov 9 19:56:27 UTC 2014


Author: ian
Date: Sun Nov  9 19:56:26 2014
New Revision: 274323
URL: https://svnweb.freebsd.org/changeset/base/274323

Log:
  Fix an apparent mis-merge that happened in r274082.  Before that, on the
  10-stable branch, this makefile had WARNS=2, and on head the value is
  still 2, but in the MFC done in r274082 it got changed to 3, causing build
  failures when building with gcc.  This direct commit to 10 goes back to
  WARNS=2.

Modified:
  stable/10/usr.sbin/pw/Makefile

Modified: stable/10/usr.sbin/pw/Makefile
==============================================================================
--- stable/10/usr.sbin/pw/Makefile	Sun Nov  9 18:13:08 2014	(r274322)
+++ stable/10/usr.sbin/pw/Makefile	Sun Nov  9 19:56:26 2014	(r274323)
@@ -8,7 +8,7 @@ SRCS=	pw.c pw_conf.c pw_user.c pw_group.
 	grupd.c pwupd.c fileupd.c psdate.c \
 	bitmap.c cpdir.c rm_r.c
 
-WARNS?=	3
+WARNS?=	2
 
 DPADD=	${LIBCRYPT} ${LIBUTIL}
 LDADD=	-lcrypt -lutil


More information about the svn-src-all mailing list