Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 18 Nov 2014 01:39:23 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r274640 - head/sys/modules/if_gre
Message-ID:  <201411180139.sAI1dNqO004091@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: imp
Date: Tue Nov 18 01:39:23 2014
New Revision: 274640
URL: https://svnweb.freebsd.org/changeset/base/274640

Log:
  Use automated MK_INET*_SUPPORT code here as well.

Modified:
  head/sys/modules/if_gre/Makefile

Modified: head/sys/modules/if_gre/Makefile
==============================================================================
--- head/sys/modules/if_gre/Makefile	Tue Nov 18 01:39:21 2014	(r274639)
+++ head/sys/modules/if_gre/Makefile	Tue Nov 18 01:39:23 2014	(r274640)
@@ -1,29 +1,16 @@
 # $FreeBSD$
 
-.PATH: ${.CURDIR}/../../net ${.CURDIR}/../../netinet ${.CURDIR}/../../netinet6
-.include "${.CURDIR}/../../conf/kern.opts.mk"
+SYSDIR?=${.CURDIR}/../..
+.PATH: ${SYSDIR}/net ${SYSDIR}/netinet ${SYSDIR}/netinet6
+.include "${SYSDIR}/conf/kern.opts.mk"
 
 KMOD=	if_gre
 SRCS=	if_gre.c opt_inet.h opt_inet6.h
 
-.if defined(KERNBUILDDIR)
-OPT_INET!= cat ${KERNBUILDDIR}/opt_inet.h; echo
-.if empty(OPT_INET)
-MK_INET_SUPPORT=no
-.endif
-.endif
-
 .if ${MK_INET_SUPPORT} != "no"
 SRCS+=	ip_gre.c
 .endif
 
-.if defined(KERNBUILDDIR)
-OPT_INET6!= cat ${KERNBUILDDIR}/opt_inet6.h; echo
-.if empty(OPT_INET6)
-MK_INET6_SUPPORT=no
-.endif
-.endif
-
 .if ${MK_INET6_SUPPORT} != "no"
 SRCS+=	ip6_gre.c
 .endif



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