diff options
author | 2015-11-11 18:47:41 +0100 | |
---|---|---|
committer | 2015-11-11 23:12:30 +0100 | |
commit | 89b7375b0f9f55183b5157473d849367d4f5b5cb (patch) | |
tree | ae318ad9af33f98964b6f677fab03933375b17c8 /docs | |
parent | 8b58ec016973bee87a4fc1cc99a32b206bdee136 (diff) | |
download | buildroot-89b7375b0f9f55183b5157473d849367d4f5b5cb.tar.gz buildroot-89b7375b0f9f55183b5157473d849367d4f5b5cb.tar.bz2 |
docs/manual: fix bash export syntax in example code
To export a variable in .bashrc we shouldn't put a '$' at the
beginning of the line, and there must be a '=' between key and value.
Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/manual/download-location.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/manual/download-location.txt b/docs/manual/download-location.txt index cca7e7e13b..0b53f54ca1 100644 --- a/docs/manual/download-location.txt +++ b/docs/manual/download-location.txt @@ -17,7 +17,7 @@ set, then the value of +BR2_DL_DIR+ in the Buildroot configuration is overridden. The following line should be added to +<~/.bashrc>+. ----------------- - $ export BR2_DL_DIR <shared download location> + export BR2_DL_DIR=<shared download location> ----------------- The download location can also be set in the +.config+ file, with the |