diff options
author | Arnout Vandecappelle <arnout@mind.be> | 2017-07-01 18:40:40 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-01 19:43:46 +0200 |
commit | 56f21c283c6f1546a6d7498a53112b7bd33803af (patch) | |
tree | d6aceb37a46a86916c547aca4c9959fe09641077 /docs/manual/adding-packages-python.txt | |
parent | 27304521766dadae159a84b5121d4f714b9b7908 (diff) | |
download | buildroot-56f21c283c6f1546a6d7498a53112b7bd33803af.tar.gz buildroot-56f21c283c6f1546a6d7498a53112b7bd33803af.zip |
manual: update old references to support/scripts
There were still some references to the old location of the scripts in
the manual. Replace them by utils/.
While we're at it, remove the redundant ./ at the beginning of some of
the example commands.
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Cc: "Yann E. MORIN" <yann.morin.1998@free.fr>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'docs/manual/adding-packages-python.txt')
-rw-r--r-- | docs/manual/adding-packages-python.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/manual/adding-packages-python.txt b/docs/manual/adding-packages-python.txt index a67a4bed4c..5eb6ba51b1 100644 --- a/docs/manual/adding-packages-python.txt +++ b/docs/manual/adding-packages-python.txt @@ -167,7 +167,7 @@ possible to customize what is done in any particular step: If the Python package for which you would like to create a Buildroot package is available on PyPI, you may want to use the +scanpypi+ tool -located in +support/scripts+ to automate the process. +located in +utils/+ to automate the process. You can find the list of existing PyPI packages https://pypi.python.org[here]. @@ -178,7 +178,7 @@ your host. When at the root of your buildroot directory just do : ----------------------- -./support/scripts/scanpypi foo bar -o package +utils/scanpypi foo bar -o package ----------------------- This will generate packages +python-foo+ and +python-bar+ in the package @@ -198,7 +198,7 @@ If your Buildroot package is not in the official Buildroot tree but in a br2-external tree, use the -o flag as follows: ----------------------- -./support/scripts/scanpypi foo bar -o other_package_dir +utils/scanpypi foo bar -o other_package_dir ----------------------- This will generate packages +python-foo+ and +python-bar+ in the @@ -207,7 +207,7 @@ This will generate packages +python-foo+ and +python-bar+ in the Option +-h+ will list the available options: ----------------------- -./support/scripts/scanpypi -h +utils/scanpypi -h ----------------------- [[python-package-cffi-backend]] |