diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2016-05-20 06:24:59 +0800 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2016-05-20 06:24:59 +0800 |
commit | f4d962ae4c1b99bf81b3a20bc23832abb02d5384 (patch) | |
tree | 27024de308ec64080b5840d14bcb314599be2a48 /Mk | |
parent | 2cc70973034e5efce565209c239e8076d055e1d1 (diff) | |
download | freebsd-ports-gnome-f4d962ae4c1b99bf81b3a20bc23832abb02d5384.tar.gz freebsd-ports-gnome-f4d962ae4c1b99bf81b3a20bc23832abb02d5384.tar.zst freebsd-ports-gnome-f4d962ae4c1b99bf81b3a20bc23832abb02d5384.zip |
Disable the change in r415530 until an exp-run is done.
Passing things in MAKE_ARGS tends to break some obscure ports.
Reported by: antoine
PR: D6271
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.port.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index 76f3f1a675e0..c9c9323ef654 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -1641,9 +1641,9 @@ MAKE_ENV+= NO_PIE=yes # We prefer to pass MK_*=no but it was only supported after a certain # revision. Passing WITHOUT_* may conflict with a make.conf or src.conf's # WITH_* value. Note that ports *do* pull in src.conf. -.if (${OSVERSION} >= 903510 && ${OSVERSION} < 1000000) || \ +.if 0 && ((${OSVERSION} >= 903510 && ${OSVERSION} < 1000000) || \ (${OSVERSION} >= 1003503 && ${OSVERSION} < 1100000) || \ - ${OSVERSION} >= 1100000 + ${OSVERSION} >= 1100000) # We will control debug files. Don't let builds that use /usr/share/mk # split out debug symbols since the plist won't know to expect it. MAKE_ARGS+= MK_DEBUG_FILES=no |