From e1f49c6068344a49944bc1745216b972c862e483 Mon Sep 17 00:00:00 2001 From: Scott Rifenbark Date: Thu, 16 Jun 2016 12:11:25 -0700 Subject: 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 Signed-off-by: Richard Purdie --- documentation/sdk-manual/sdk-using.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'documentation') 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 @@ 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) -- cgit v1.2.3-54-g00ecf