summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorScott Rifenbark <srifenbark@gmail.com>2016-06-16 12:11:25 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-08-19 08:42:17 +0100
commite1f49c6068344a49944bc1745216b972c862e483 (patch)
treee2eb92c1ef0e8a4bf8f6fd3d95ab9d815960d6f3 /documentation
parent046fd3cb83c2cf5dce67e5c3974bb00a408d5a3f (diff)
downloadpoky-e1f49c6068344a49944bc1745216b972c862e483.tar.gz
sdk-manual: Updated configure.ac file in helloworld example.
The file was named 'configure.in' and was slightly different than what it needed to be in order to work. The file needs to be named 'configure.ac' and have slightly different contents. Fixed both. (From yocto-docs rev: ea2aa991e8072ac8d371afdcbb72daf34065d5fb) Signed-off-by: Scott Rifenbark <srifenbark@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r--documentation/sdk-manual/sdk-using.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/documentation/sdk-manual/sdk-using.xml b/documentation/sdk-manual/sdk-using.xml
index a549284e99..9354ace3b9 100644
--- a/documentation/sdk-manual/sdk-using.xml
+++ b/documentation/sdk-manual/sdk-using.xml
@@ -226,7 +226,7 @@
226 </literallayout></para></listitem> 226 </literallayout></para></listitem>
227 <listitem><para><emphasis>Populate the directory:</emphasis> 227 <listitem><para><emphasis>Populate the directory:</emphasis>
228 Create <filename>hello.c</filename>, <filename>Makefile.am</filename>, 228 Create <filename>hello.c</filename>, <filename>Makefile.am</filename>,
229 and <filename>configure.in</filename> files as follows: 229 and <filename>configure.ac</filename> files as follows:
230 <itemizedlist> 230 <itemizedlist>
231 <listitem><para>For <filename>hello.c</filename>, include 231 <listitem><para>For <filename>hello.c</filename>, include
232 these lines: 232 these lines:
@@ -247,8 +247,8 @@
247 <listitem><para>For <filename>configure.in</filename>, 247 <listitem><para>For <filename>configure.in</filename>,
248 include these lines: 248 include these lines:
249 <literallayout class='monospaced'> 249 <literallayout class='monospaced'>
250 AC_INIT(hello.c) 250 AC_INIT(hello,0.1)
251 AM_INIT_AUTOMAKE(hello,0.1) 251 AM_INIT_AUTOMAKE([foreign])
252 AC_PROG_CC 252 AC_PROG_CC
253 AC_PROG_INSTALL 253 AC_PROG_INSTALL
254 AC_OUTPUT(Makefile) 254 AC_OUTPUT(Makefile)