diff options
author | Thomas De Schampheleire <patrickdepinguin@gmail.com> | 2014-09-27 21:32:43 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-10-04 18:53:25 +0200 |
commit | 1d2574ac6f6d30044ee138b6235c50a6a3998d8a (patch) | |
tree | db1ff915630386f222654c43387cf39b244341ad /docs/manual/adding-packages-autotools.txt | |
parent | 4a6bfe88d5615d2117d34dbf1538cb71d6b22e48 (diff) | |
download | buildroot-1d2574ac6f6d30044ee138b6235c50a6a3998d8a.tar.gz buildroot-1d2574ac6f6d30044ee138b6235c50a6a3998d8a.zip |
packages: rename FOO_AUTORECONF_OPT into FOO_AUTORECONF_OPTS
To be consistent with the recent change of FOO_MAKE_OPT into FOO_MAKE_OPTS,
make the same change for FOO_AUTORECONF_OPT.
Sed command used:
find * -type f | xargs sed -i 's#_AUTORECONF_OPT\>#&S#g'
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Reviewed-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-autotools.txt')
-rw-r--r-- | docs/manual/adding-packages-autotools.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/manual/adding-packages-autotools.txt b/docs/manual/adding-packages-autotools.txt index d04e023e97..526b216581 100644 --- a/docs/manual/adding-packages-autotools.txt +++ b/docs/manual/adding-packages-autotools.txt @@ -126,7 +126,7 @@ cases, typical packages will therefore only use a few of them. +LIBFOO_AUTORECONF=YES+. These are passed in the environment of the 'autoreconf' command. By default, empty. -* +LIBFOO_AUTORECONF_OPT+ to specify additional options +* +LIBFOO_AUTORECONF_OPTS+ to specify additional options passed to the 'autoreconf' program if +LIBFOO_AUTORECONF=YES+. By default, empty. |