svn commit: r326963 - head/stand/i386/libi386

Warner Losh imp at FreeBSD.org
Tue Dec 19 04:06:11 UTC 2017


Author: imp
Date: Tue Dec 19 04:06:07 2017
New Revision: 326963
URL: https://svnweb.freebsd.org/changeset/base/326963

Log:
  No need to use relative paths like this here.
  
  Sponsored by: Netflix

Modified:
  head/stand/i386/libi386/multiboot.c

Modified: head/stand/i386/libi386/multiboot.c
==============================================================================
--- head/stand/i386/libi386/multiboot.c	Tue Dec 19 04:06:02 2017	(r326962)
+++ head/stand/i386/libi386/multiboot.c	Tue Dec 19 04:06:07 2017	(r326963)
@@ -49,8 +49,8 @@ __FBSDID("$FreeBSD$");
 
 #include "bootstrap.h"
 #include "multiboot.h"
-#include "../i386/libi386/libi386.h"
-#include "../i386/btx/lib/btxv86.h"
+#include "libi386.h"
+#include <btxv86.h>
 
 #define MULTIBOOT_SUPPORTED_FLAGS \
 				(MULTIBOOT_PAGE_ALIGN|MULTIBOOT_MEMORY_INFO)


More information about the svn-src-head mailing list