Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 23 Aug 2016 12:33:13 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r420670 - head/Mk/Uses
Message-ID:  <201608231233.u7NCXDxI065342@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marino
Date: Tue Aug 23 12:33:13 2016
New Revision: 420670
URL: https://svnweb.freebsd.org/changeset/ports/420670

Log:
  Mk/Uses/alias.mk: Fix typo, remove "8" option
  
  The "8" refers to FreeBSD 8.x which is no longer supported by the
  ports tree.  It's never been used (to my knowledge) so just remove the
  option altogether.

Modified:
  head/Mk/Uses/alias.mk

Modified: head/Mk/Uses/alias.mk
==============================================================================
--- head/Mk/Uses/alias.mk	Tue Aug 23 12:28:07 2016	(r420669)
+++ head/Mk/Uses/alias.mk	Tue Aug 23 12:33:13 2016	(r420670)
@@ -1,12 +1,12 @@
 # $FreeBSD$
 #
-# Add __FreeSBD__ definition to CFLAGS
+# Add __FreeBSD__ definition to CFLAGS
 # Used by DPorts when masquerading as FreeBSD allows port to build without
 # additional patches
 #
 # Feature:      alias
 # Usage:        USES=alias or USES=alias:ARGS
-# Valid ARGS:   8, 9 (default), 10, 11
+# Valid ARGS:   9 (default), 10, 11
 #
 # MAINTAINER:	marino@FreeBSD.org
 
@@ -18,8 +18,7 @@ _INCLUDE_USES_ALIAS_MK=    yes
 .if empty(alias_ARGS)
 CFLAGS+=	-D__FreeBSD__=9
 .else
-.  if ${alias_ARGS} == 8 || ${alias_ARGS} == 10 \
-   || ${alias_ARGS} == 9 || ${alias_ARGS} == 11
+.  if ${alias_ARGS} == 9 || ${alias_ARGS} == 10 || ${alias_ARGS} == 11
 CFLAGS+=	-D__FreeBSD__=${alias_ARGS}
 .  else
 IGNORE=	invalid MAJOR RELEASE argument (${alias_ARGS}) for USES=alias



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