diff options
author | bcr <bcr@FreeBSD.org> | 2010-07-25 20:21:32 +0000 |
---|---|---|
committer | bcr <bcr@FreeBSD.org> | 2010-07-25 20:21:32 +0000 |
commit | 698e45b59fb116f4f09f1ea51ef5474736aa90ac (patch) | |
tree | 30000939248a23abf5fc6f4737b9021a05c7e859 /share | |
parent | 915b2e329d0a077ffa7807fa0979c6d227541822 (diff) | |
download | FreeBSD-src-698e45b59fb116f4f09f1ea51ef5474736aa90ac.zip FreeBSD-src-698e45b59fb116f4f09f1ea51ef5474736aa90ac.tar.gz |
Add an example to encourage people to have a look at either
make(1) or /usr/ports/ports-mgmt/portconf for port-specific
variables/options to compile a port.
PR: docs/145655
Submitted by: Armin Pirkovitsch (armin at frozen dash zone dot org)
Discussed with: dougb
MFC after: 7 days
Diffstat (limited to 'share')
-rw-r--r-- | share/examples/etc/make.conf | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/share/examples/etc/make.conf b/share/examples/etc/make.conf index 631610a..128a04a 100644 --- a/share/examples/etc/make.conf +++ b/share/examples/etc/make.conf @@ -269,3 +269,14 @@ # /etc/mail/Makefile. Defaults to 0640. # #SENDMAIL_MAP_PERMS= +#
+#
+# It is also possible to set variables in make.conf which will only be
+# used when compiling a specific port. For more details see make(1).
+#
+#.if ${.CURDIR:M*/irc/irssi-devel*}
+#WITH_DEBUG=YES
+#.endif
+#
+# Another approach is to use /usr/ports/ports-mgmt/portconf which has
+# its own config file for port specific options.
|