From: Scott Rifenbark Date: Thu, 16 Jun 2016 19:11:25 +0000 (-0700) Subject: sdk-manual: Updated configure.ac file in helloworld example. X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a3494dde705ac8d9762bd582a752605d77b043b1;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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: 1b80e90848d23737462f8b0e55b2ff604f9abf41) Signed-off-by: Scott Rifenbark Signed-off-by: Richard Purdie --- diff --git a/documentation/sdk-manual/sdk-using.xml b/documentation/sdk-manual/sdk-using.xml index a549284e997..9354ace3b99 100644 --- a/documentation/sdk-manual/sdk-using.xml +++ b/documentation/sdk-manual/sdk-using.xml @@ -226,7 +226,7 @@ Populate the directory: Create hello.c, Makefile.am, - and configure.in files as follows: + and configure.ac files as follows: For hello.c, include these lines: @@ -247,8 +247,8 @@ For configure.in, include these lines: - AC_INIT(hello.c) - AM_INIT_AUTOMAKE(hello,0.1) + AC_INIT(hello,0.1) + AM_INIT_AUTOMAKE([foreign]) AC_PROG_CC AC_PROG_INSTALL AC_OUTPUT(Makefile)