aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES7
-rw-r--r--Mk/Uses/fmake.mk21
2 files changed, 7 insertions, 21 deletions
diff --git a/CHANGES b/CHANGES
index 33077f733ab3..9f025708e1b8 100644
--- a/CHANGES
+++ b/CHANGES
@@ -10,6 +10,13 @@ in the release notes and/or placed into UPDATING.
All ports committers are allowed to commit to this file.
+20171020:
+AUTHOR: ak@FreeBSD.org
+
+ The USES=fmake has been removed. It was created to help migration from
+ old FreeBSD make (pmake) and there are no more users of it left in
+ the ports tree.
+
20171012:
AUTHOR: mat@FreeBSD.org
diff --git a/Mk/Uses/fmake.mk b/Mk/Uses/fmake.mk
deleted file mode 100644
index 5afa3fc71d1a..000000000000
--- a/Mk/Uses/fmake.mk
+++ /dev/null
@@ -1,21 +0,0 @@
-# $FreeBSD$
-#
-# Provide support to use the legacy FreeBSD make
-#
-# Feature: fmake
-# Usage: USES=fmake
-#
-# MAINTAINER: portmgr@FreeBSD.org
-
-.if !defined(_INCLUDE_USES_FMAKE_MK)
-_INCLUDE_USES_FMAKE_MK= yes
-
-.if !empty(fmake_ARGS)
-IGNORE= Incorrect 'USES+= fmake:${fmake_ARGS}' fmake takes no arguments
-.endif
-
-FMAKE= ${LOCALBASE}/bin/fmake
-BUILD_DEPENDS+= ${FMAKE}:devel/fmake
-CONFIGURE_ENV+= MAKE=${FMAKE}
-MAKE_CMD= ${FMAKE}
-.endif