diff options
author | bapt <bapt@FreeBSD.org> | 2014-09-01 13:43:02 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2014-09-01 13:43:02 +0800 |
commit | a60ca623f1afc4714151f2317c9d927e9d281642 (patch) | |
tree | a05c3950ed484702259a77932c4e76ca60cb0894 /Mk/bsd.sanity.mk | |
parent | 613a47fe99d6d0f6517bcb4a893c859b4fa72beb (diff) | |
download | freebsd-ports-gnome-a60ca623f1afc4714151f2317c9d927e9d281642.tar.gz freebsd-ports-gnome-a60ca623f1afc4714151f2317c9d927e9d281642.tar.zst freebsd-ports-gnome-a60ca623f1afc4714151f2317c9d927e9d281642.zip |
Remove support for NO_STAGE
Mark all current non staged ports as BROKEN
Reviewed by: antoine
Exp-run: antoine
Differential Revision: https://reviews.freebsd.org/D693
Diffstat (limited to 'Mk/bsd.sanity.mk')
-rw-r--r-- | Mk/bsd.sanity.mk | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/Mk/bsd.sanity.mk b/Mk/bsd.sanity.mk index 7d118e2d343a..a45dce2e4d3d 100644 --- a/Mk/bsd.sanity.mk +++ b/Mk/bsd.sanity.mk @@ -66,19 +66,17 @@ DEV_ERROR+= "USE_TCL and USE_TK are no longer supported, please use USES=tcl or # print warning if no reason given for NO_STAGE .if defined(NO_STAGE) -DEV_WARNING+= "NO_STAGE is deprecated, convert port to stage directory:" -DEV_WARNING+= "https://wiki.freebsd.org/ports/StageDir" +DEV_ERROR+= "NO_STAGE is unsupported, convert port to stage directory:" +DEV_ERROR+= "https://wiki.freebsd.org/ports/StageDir" .endif -.if !defined(NO_STAGE) .for a in 1 2 3 4 5 6 7 8 9 L N .if defined(MAN${a}) DEV_WARNING+= "MAN${a} macros are deprecated when using stage directory" .endif .endfor -.endif -.if !defined(NO_STAGE) && defined(MLINKS) +.if defined(MLINKS) DEV_WARNING+= "MLINKS macros are deprecated when using stage directory" .endif |