diff options
author | Timo Ketola <timo@exertus.fi> | 2014-11-06 14:39:05 +0200 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-11-07 16:27:07 -0500 |
commit | adbba99606a06df1435de6f1866c0e7996412e27 (patch) | |
tree | cfb949ce6be110d8369afec1f84e0b29bd39d033 /README | |
parent | ea19527c209b0d97b532a8dc5bf28f2cdd016888 (diff) | |
download | u-boot-imx-adbba99606a06df1435de6f1866c0e7996412e27.zip u-boot-imx-adbba99606a06df1435de6f1866c0e7996412e27.tar.gz u-boot-imx-adbba99606a06df1435de6f1866c0e7996412e27.tar.bz2 |
doc: fix documentation of out-of-tree build
Correct environment variable for output directory is KBUILD_OUTPUT.
Signed-off-by: Timo Ketola <timo@exertus.fi>
Diffstat (limited to 'README')
-rw-r--r-- | README | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -5012,14 +5012,14 @@ this behavior and build U-Boot to some external directory: make O=/tmp/build NAME_defconfig make O=/tmp/build all -2. Set environment variable BUILD_DIR to point to the desired location: +2. Set environment variable KBUILD_OUTPUT to point to the desired location: - export BUILD_DIR=/tmp/build + export KBUILD_OUTPUT=/tmp/build make distclean make NAME_defconfig make all -Note that the command line "O=" setting overrides the BUILD_DIR environment +Note that the command line "O=" setting overrides the KBUILD_OUTPUT environment variable. |