aboutsummaryrefslogtreecommitdiffstats
path: root/Mk
diff options
context:
space:
mode:
authorbapt <bapt@FreeBSD.org>2013-09-19 05:52:47 +0800
committerbapt <bapt@FreeBSD.org>2013-09-19 05:52:47 +0800
commitf27e0f75fbfa636ff623aa9b6aa7bf05ce3edbbe (patch)
treef8b0ae90a0c833b76512710dfdc45fcca51cf21c /Mk
parent28bd67b82e21aa675dd8b77afa9dd1f3480cb0d6 (diff)
downloadfreebsd-ports-gnome-f27e0f75fbfa636ff623aa9b6aa7bf05ce3edbbe.tar.gz
freebsd-ports-gnome-f27e0f75fbfa636ff623aa9b6aa7bf05ce3edbbe.tar.zst
freebsd-ports-gnome-f27e0f75fbfa636ff623aa9b6aa7bf05ce3edbbe.zip
Do not issue warnings yet about WITHOUT_NLS and WITHOUT_X11 for the users has the switch has yes been fully performed
While here fix printing of warnings
Diffstat (limited to 'Mk')
-rw-r--r--Mk/bsd.sanity.mk16
1 files changed, 8 insertions, 8 deletions
diff --git a/Mk/bsd.sanity.mk b/Mk/bsd.sanity.mk
index eed53f740731..38fa5c88eb24 100644
--- a/Mk/bsd.sanity.mk
+++ b/Mk/bsd.sanity.mk
@@ -7,13 +7,13 @@
DEV_WARNING+= "USE_GMAKE is deprecated consider using USES=gmake"
.endif
-.if defined(WITHOUT_NLS)
-WARNING+= "WITHOUT_NLS is deprecated use NLS option instead"
-.endif
-
-.if defined(WITHOUT_X11)
-WARNING+= "WITHOUT_X11 is deprecated use X11 option instead"
-.endif
+#.if defined(WITHOUT_NLS)
+#WARNING+= "WITHOUT_NLS is deprecated use NLS option instead"
+#.endif
+#
+#.if defined(WITHOUT_X11)
+#WARNING+= "WITHOUT_X11 is deprecated use X11 option instead"
+#.endif
#.if !defined(LICENSE)
#DEV_WARNING+= "No license is defined consider adding one"
@@ -94,7 +94,7 @@ DEV_WARNING+= "Please use the new format for LIB_DEPENDS, see handbook for detai
.if defined(WARNING)
show-warnings:
.for m in ${WARNING}
- @${ECHO_MSG} "${WARNING}"
+ @${ECHO_MSG} "${m}"
.endfor
@sleep 5