diff options
author | ryoon <ryoon@pkgsrc.org> | 2019-06-26 00:22:56 +0000 |
---|---|---|
committer | ryoon <ryoon@pkgsrc.org> | 2019-06-26 00:22:56 +0000 |
commit | 7d77e8f6ac74270539738ee26360dbaea138c884 (patch) | |
tree | 21ee743fb10115b353db38d773279c2e611a2707 /mk | |
parent | 35bffcdfa1777c41d1d1f864f2f38edb0880f3fb (diff) | |
download | pkgsrc-7d77e8f6ac74270539738ee26360dbaea138c884.tar.gz |
Fix a typo in flag in comment
Diffstat (limited to 'mk')
-rw-r--r-- | mk/compiler.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/compiler.mk b/mk/compiler.mk index b027954669b..b90620be121 100644 --- a/mk/compiler.mk +++ b/mk/compiler.mk @@ -1,4 +1,4 @@ -# $NetBSD: compiler.mk,v 1.91 2019/02/22 00:06:46 rillig Exp $ +# $NetBSD: compiler.mk,v 1.92 2019/06/26 00:22:56 ryoon Exp $ # # This Makefile fragment implements handling for supported C/C++/Fortran # compilers. @@ -43,7 +43,7 @@ # Declares the languages used in the source code of the package. # This is used to determine the correct compilers to make # visible to the build environment, installing them if -# necessary. Flags such as --std=c++99 are also added. +# necessary. Flags such as -std=c++99 are also added. # Valid values are: c, c99, c++, c++03, gnu++03, c++0x, gnu++0x, # c++11, gnu++11, c++14, gnu++14, fortran, fortran77, java, objc, # obj-c++, and ada. The default is "c". |