svn commit: r366634 - head/contrib/nvi/common

Alex Richardson arichardson at FreeBSD.org
Mon Oct 12 10:42:26 UTC 2020


Author: arichardson
Date: Mon Oct 12 10:42:24 2020
New Revision: 366634
URL: https://svnweb.freebsd.org/changeset/base/366634

Log:
  Fix buildworld on Linux/macOS after nvi update
  
  This re-applies r365941 which was lost in the nvi update.

Modified:
  head/contrib/nvi/common/common.h

Modified: head/contrib/nvi/common/common.h
==============================================================================
--- head/contrib/nvi/common/common.h	Mon Oct 12 10:42:19 2020	(r366633)
+++ head/contrib/nvi/common/common.h	Mon Oct 12 10:42:24 2020	(r366634)
@@ -14,7 +14,7 @@
 #ifdef __linux__
 #include "/usr/include/db1/db.h"	/* Only include db1. */
 #else
-#include "/usr/include/db.h"	/* Only include db1. */
+#include <db.h>			/* Only include db1. */
 #endif
 #include <regex.h>		/* May refer to the bundled regex. */
 


More information about the svn-src-all mailing list