Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 8 Sep 2014 02:37:45 +0000 (UTC)
From:      Glen Barber <gjb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r271245 - head/sys/modules/if_gif
Message-ID:  <201409080237.s882bjr9067635@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gjb
Date: Mon Sep  8 02:37:45 2014
New Revision: 271245
URL: http://svnweb.freebsd.org/changeset/base/271245

Log:
  Silence a bmake(1) warning in the gif(4) module build
  when built with WITHOUT_INET6.
  
  LGTM: 		sbruno
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/sys/modules/if_gif/Makefile

Modified: head/sys/modules/if_gif/Makefile
==============================================================================
--- head/sys/modules/if_gif/Makefile	Mon Sep  8 02:25:01 2014	(r271244)
+++ head/sys/modules/if_gif/Makefile	Mon Sep  8 02:37:45 2014	(r271245)
@@ -9,7 +9,7 @@ KMOD=	if_gif
 SRCS=	if_gif.c in_gif.c opt_inet.h opt_inet6.h opt_mrouting.h
 
 .if defined(KERNBUILDDIR)
-OPT_INET6!= cat ${KERNBUILDDIR}/opt_inet6.h
+OPT_INET6!= cat ${KERNBUILDDIR}/opt_inet6.h; echo
 .if empty(OPT_INET6)
 MK_INET6_SUPPORT=no
 .endif



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