aboutsummaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorEnji Cooper <ngie@FreeBSD.org>2014-12-06 03:15:46 +0000
committerEnji Cooper <ngie@FreeBSD.org>2014-12-06 03:15:46 +0000
commit3e37e376817d0d8b4d0336b7465a54020a4e7268 (patch)
treee46d0e0f9c8ba65d72227f91ecd25d201211bd5d /share
parenta8da5dd65828ce5fedd762d2dade91380a833176 (diff)
parent9f1bd9c14604daf3c0c14d3c874d63cb80e449bb (diff)
downloadsrc-3e37e376817d0d8b4d0336b7465a54020a4e7268.tar.gz
src-3e37e376817d0d8b4d0336b7465a54020a4e7268.zip
Fix typos in comments and wrap to <80 columns
MFC after: 3 days
Notes
Notes: svn path=/head/; revision=275557
Diffstat (limited to 'share')
-rw-r--r--share/mk/bsd.compiler.mk24
1 files changed, 14 insertions, 10 deletions
diff --git a/share/mk/bsd.compiler.mk b/share/mk/bsd.compiler.mk
index 9e9ca75c98d2..e5b2b869d57c 100644
--- a/share/mk/bsd.compiler.mk
+++ b/share/mk/bsd.compiler.mk
@@ -2,18 +2,22 @@
# Setup variables for the compiler
#
-# COMPILTER_TYPE is the major type of compiler. Currently gcc and clang support
-# automatic detetion. Other compiler types can be shoe-horned in, but require explicit
-# setting of the compiler type. The compiler type can also be set explicitly if, say,
-# you install gcc as clang...
+# COMPILER_TYPE is the major type of compiler. Currently gcc and clang support
+# automatic detection. Other compiler types can be shoe-horned in, but require
+# explicit setting of the compiler type. The compiler type can also be set
+# explicitly if, say, you install gcc as clang...
#
-# COMPILER_VERSION is a numeric constant equal to major * 10000 + minor * 100 + tiny. It
-# too can be overriden on the command line. When testing it, be sure to make sure that you
-# are limiting the test to a specific compiler. Testing against 30300 for gcc likely isn't
-# what you wanted (since versions of gcc prior to 4.2 likely have no prayer of working).
+# COMPILER_VERSION is a numeric constant equal to:
+# major * 10000 + minor * 100 + tiny
+# It too can be overriden on the command line. When testing it, be sure to
+# make sure that you are limiting the test to a specific compiler. Testing
+# against 30300 for gcc likely isn't what you wanted (since versions of gcc
+# prior to 4.2 likely have no prayer of working).
#
-# COMPILER_FEATURES will contain one or more of the following, based on compiler support
-# for that feature: c++11 (supports full (or nearly full) C++11 programming environment).
+# COMPILER_FEATURES will contain one or more of the following, based on
+# compiler support for that feature:
+#
+# - c++11 : supports full (or nearly full) C++11 programming environment.
#
# This file may be included multiple times, but only has effect the first time.
#