From abfd001d9fa09a52f45f2b2b820d1a7fc7ed47d6 Mon Sep 17 00:00:00 2001 From: Erik Bray Date: Wed, 30 Nov 2016 15:05:56 +0100 Subject: [PATCH] Fix incorrect example in the docstring for the configure build stage The example had both incorrect syntax and does not match what is implemented in the code. It might be nice the `configure` stage options were better documented too. --- base/autotools_package.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/autotools_package.py b/base/autotools_package.py index 824f9fa2b..47a451065 100644 --- a/base/autotools_package.py +++ b/base/autotools_package.py @@ -17,7 +17,7 @@ def configure(ctx, stage_args): - name: configure extra: ['--enable-foo', '--with-zlib=${ZLIB_DIR}'] set_env_flags: true # default - env_flags_append: {'LDFLAGS', '-Wl,-rpath=${ARTIFACT}/lib'} # only meaningful if set_env_flags: true + append: {'LDFLAGS': '-Wl,-rpath=${ARTIFACT}/lib'} # only meaningful if set_env_flags: true configure_path: . # default global_flags: false # default