diff --git a/docs/buildroot.html b/docs/buildroot.html
index d751250f2a..1804e978b8 100644
--- a/docs/buildroot.html
+++ b/docs/buildroot.html
@@ -899,16 +899,16 @@ config BR2_PACKAGE_FOO
18 touch $@
19
20 $(FOO_DIR)/.configured: $(FOO_DIR)/.source
- 21 (cd $(FOO_DIR); rm -rf config.cache ; \
+ 21 (cd $(FOO_DIR); rm -rf config.cache; \
22 $(TARGET_CONFIGURE_OPTS) \
- 23 CFLAGS="$(TARGET_CFLAGS)" \
+ 23 $(TARGET_CONFIGURE_ARGS) \
24 ./configure \
25 --target=$(GNU_TARGET_NAME) \
26 --host=$(GNU_TARGET_NAME) \
27 --build=$(GNU_HOST_NAME) \
28 --prefix=/usr \
29 --sysconfdir=/etc \
- 30 );
+ 30 )
31 touch $@
32
33 $(FOO_DIR)/$(FOO_BINARY): $(FOO_DIR)/.configured