Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 12 Oct 2020 10:42:24 +0000 (UTC)
From:      Alex Richardson <arichardson@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r366634 - head/contrib/nvi/common
Message-ID:  <202010121042.09CAgOYV071542@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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. */
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202010121042.09CAgOYV071542>