diff options
author | Hartmut Brandt <harti@FreeBSD.org> | 2004-08-11 07:14:11 +0000 |
---|---|---|
committer | Hartmut Brandt <harti@FreeBSD.org> | 2004-08-11 07:14:11 +0000 |
commit | 47a4e0e50d1d8e6e0f1ad8c638a4479d59fc8e0e (patch) | |
tree | c241c3fb7be1887c41aaa7dd7db0e68202c2e0c2 /share | |
parent | 2f29b4440af40d1aacdc564b91cb261914b66559 (diff) | |
download | src-47a4e0e50d1d8e6e0f1ad8c638a4479d59fc8e0e.tar.gz src-47a4e0e50d1d8e6e0f1ad8c638a4479d59fc8e0e.zip |
Document the correct use of MAKEOBJDIRPREFIX and MAKEOBJDIR.
Requested by: kris
Notes
Notes:
svn path=/head/; revision=133476
Diffstat (limited to 'share')
-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 6f69082a4a72..754a9b458fcf 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 |