diff options
author | harti <harti@FreeBSD.org> | 2004-08-11 07:14:11 +0000 |
---|---|---|
committer | harti <harti@FreeBSD.org> | 2004-08-11 07:14:11 +0000 |
commit | 94d764228587c861fc783fbf41f8f4654e8ecf70 (patch) | |
tree | c241c3fb7be1887c41aaa7dd7db0e68202c2e0c2 /share/examples | |
parent | 6508567f414f99eccf89fd3fd89ac1873bfcc524 (diff) | |
download | FreeBSD-src-94d764228587c861fc783fbf41f8f4654e8ecf70.zip FreeBSD-src-94d764228587c861fc783fbf41f8f4654e8ecf70.tar.gz |
Document the correct use of MAKEOBJDIRPREFIX and MAKEOBJDIR.
Requested by: kris
Diffstat (limited to 'share/examples')
-rw-r--r-- | share/examples/etc/make.conf | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/share/examples/etc/make.conf b/share/examples/etc/make.conf index 6f69082..754a9b4 100644 --- a/share/examples/etc/make.conf +++ b/share/examples/etc/make.conf @@ -15,6 +15,12 @@ # You have to find those in the Makefiles and documentation of # the source tree. # +# Note, that you should not set MAKEOBJDIRPREFIX or MAKEOBJDIR +# from make.conf (or as command line variables to make). +# Both variables are environment variables for make and must be used as: +# +# env MAKEOBJDIRPREFIX=/big/directory make +# # # The CPUTYPE variable controls which processor should be targeted for # generated code. This controls processor-specific optimizations in |