svn commit: r365972 - head/tools/bsdbox

Kyle Evans kevans at FreeBSD.org
Mon Sep 21 19:50:40 UTC 2020


Author: kevans
Date: Mon Sep 21 19:50:39 2020
New Revision: 365972
URL: https://svnweb.freebsd.org/changeset/base/365972

Log:
  bsdbox: fix build after recent libifconfig changes
  
  libifconfig now generates file(s) into its .OBJDIR that are essential to the
  build. Make sure we -I that in, like we already do in the ^/rescue build.

Modified:
  head/tools/bsdbox/Makefile

Modified: head/tools/bsdbox/Makefile
==============================================================================
--- head/tools/bsdbox/Makefile	Mon Sep 21 19:25:41 2020	(r365971)
+++ head/tools/bsdbox/Makefile	Mon Sep 21 19:50:39 2020	(r365972)
@@ -74,6 +74,7 @@ CRUNCH_LIBS+= -l80211 -lalias -lcam -lcursesw -ldevsta
 # Don't forget this - ifconfig, etc -adrian
 CRUNCH_LIBS+= ${LDADD_ifconfig}
 CRUNCH_LIBS+= -lgeom -lbsdxml -ljail -lkiconv -lmd -lsbuf -lufs
+CRUNCH_BUILDOPTS+= CRUNCH_CFLAGS+=-I${OBJTOP}/lib/libifconfig
 
 ##################################################################
 # Programs from stock /usr/bin


More information about the svn-src-all mailing list