summaryrefslogtreecommitdiffstats
path: root/documentation/sdk-manual
diff options
context:
space:
mode:
authorScott Rifenbark <srifenbark@gmail.com>2018-06-04 11:14:05 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-06-15 11:26:38 +0100
commit21a43045819333c83db0df3c16657e09739ab2aa (patch)
tree42ca787ff6149c7a9cbadbbf6861ff360ee5a7bd /documentation/sdk-manual
parent1ac0172485490c80b8b20dcdb23be0c7ccc6a5fc (diff)
downloadpoky-21a43045819333c83db0df3c16657e09739ab2aa.tar.gz
sdk-manual: Changed "configure.ac" file in the autotools-based example
The line used to be "AC_PROG_INSTALL". I did some digging and can't really figure out why the example is not following the standard "helloworld" stuff out there all over the internet. So, I have the user create a configure.in file as follows now: AC_INIT(hello,0.1) AM_INIT_AUTOMAKE([foreign]) AC_PROG_CC AC_CONFIG_FILES(makefile) AC_OUTPUT The original was as follows: AC_INIT(HELLO,0.1) AM_INIT_AUTOMAKE([foreign]) AC_PROG_CC AC_PROG_INSTALL AC_OUTPUT(Makefile) (From yocto-docs rev: 21eac500384aaea577ce90098c835cd140517941) Signed-off-by: Scott Rifenbark <srifenbark@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/sdk-manual')
-rw-r--r--documentation/sdk-manual/sdk-working-projects.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/sdk-manual/sdk-working-projects.xml b/documentation/sdk-manual/sdk-working-projects.xml
index 2793a6cb9e..2e232a5041 100644
--- a/documentation/sdk-manual/sdk-working-projects.xml
+++ b/documentation/sdk-manual/sdk-working-projects.xml
@@ -77,8 +77,8 @@
77 AC_INIT(hello,0.1) 77 AC_INIT(hello,0.1)
78 AM_INIT_AUTOMAKE([foreign]) 78 AM_INIT_AUTOMAKE([foreign])
79 AC_PROG_CC 79 AC_PROG_CC
80 AC_PROG_INSTALL 80 AC_CONFIG_FILES(Makefile)
81 AC_OUTPUT(Makefile) 81 AC_OUTPUT
82 </literallayout> 82 </literallayout>
83 </para></listitem> 83 </para></listitem>
84 </itemizedlist> 84 </itemizedlist>