diff mbox series

Fix makefile.

Message ID 20230529030612.663-1-tom.isaacson@teknique.com
State New
Headers show
Series Fix makefile. | expand

Commit Message

Tom Isaacson May 29, 2023, 3:06 a.m. UTC
Signed-off-by: Tom Isaacson <tom.isaacson@teknique.com>
---
 documentation/sdk-manual/working-projects.rst | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Alexander Kanavin May 29, 2023, 4:46 a.m. UTC | #1
What is bring fixed and why? The commit message needs to include this
information.

Alex

On Mon 29. May 2023 at 5.06, Tom Isaacson <tom.isaacson@teknique.com> wrote:

> Signed-off-by: Tom Isaacson <tom.isaacson@teknique.com>
> ---
>  documentation/sdk-manual/working-projects.rst | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/documentation/sdk-manual/working-projects.rst
> b/documentation/sdk-manual/working-projects.rst
> index 9a0db0099..b49a4cdca 100644
> --- a/documentation/sdk-manual/working-projects.rst
> +++ b/documentation/sdk-manual/working-projects.rst
> @@ -296,8 +296,8 @@ example:
>         ${CC} main.o module.o -o target_bin
>        main.o: main.c module.h
>         ${CC} -I . -c main.c
> -      module.o: module.c
> -       module.h ${CC} -I . -c module.c
> +      module.o: module.c module.h
> +         ${CC} -I . -c module.c
>        clean:
>         rm -rf *.o
>         rm target_bin
> --
> 2.40.0.windows.1
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#3971):
> https://lists.yoctoproject.org/g/docs/message/3971
> Mute This Topic: https://lists.yoctoproject.org/mt/99193507/1686489
> Group Owner: docs+owner@lists.yoctoproject.org
> Unsubscribe: https://lists.yoctoproject.org/g/docs/unsub [
> alex.kanavin@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
>
Michael Opdenacker May 30, 2023, 8:47 a.m. UTC | #2
On 29.05.23 at 06:46, Alexander Kanavin wrote:
> What is bring fixed and why? The commit message needs to include this 
> information.


Happy to help with that. Thanks Isaac for the patch and Alex for the review!
Cheers
Michael.
diff mbox series

Patch

diff --git a/documentation/sdk-manual/working-projects.rst b/documentation/sdk-manual/working-projects.rst
index 9a0db0099..b49a4cdca 100644
--- a/documentation/sdk-manual/working-projects.rst
+++ b/documentation/sdk-manual/working-projects.rst
@@ -296,8 +296,8 @@  example:
       	${CC} main.o module.o -o target_bin
       main.o: main.c module.h
       	${CC} -I . -c main.c
-      module.o: module.c
-      	module.h ${CC} -I . -c module.c
+      module.o: module.c module.h
+         ${CC} -I . -c module.c
       clean:
       	rm -rf *.o
       	rm target_bin