From c035aeb59ee9544ce223c6bde0af68fb3aa5da97 Mon Sep 17 00:00:00 2001 From: Henry Bruce Date: Thu, 5 May 2016 11:18:52 -0700 Subject: [PATCH 1/2] Makefile.am: Added libbbexample dependency to fix parallel build bug Signed-off-by: Henry Bruce --- Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile.am b/Makefile.am index 8075cef..bafd880 100644 --- a/Makefile.am +++ b/Makefile.am @@ -10,3 +10,4 @@ libbbexample_la_LDFLAGS= -version-info 1:0:0 bin_PROGRAMS = bbexample bbexample_SOURCES = bbexample.c bbexample_LDADD = .libs/libbbexample.la +bbexample_DEPENDENCIES = libbbexample.la From 55412248fbab1e95a777aa386b3f2c890c105c45 Mon Sep 17 00:00:00 2001 From: Henry Bruce Date: Fri, 21 Oct 2016 10:14:21 -0700 Subject: [PATCH 2/2] gitignore: Add autoools generated files and Yocto devtool temporary folders Signed-off-by: Henry Bruce --- .gitignore | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/.gitignore b/.gitignore index 4d40434..72b0bb6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,21 @@ +# Autotools generated files +/Makefile.in +/autom4te.cache +/autoscan.log +/autoscan-*.log +/aclocal.m4 +/compile +/config.guess +/config.h.in +/config.sub +/configure +/configure.scan +/depcomp +/install-sh +/ltmain.sh +/missing +/stamp-h1 + # Object files *.o *.ko @@ -21,3 +39,7 @@ *.i*86 *.x86_64 *.hex + +# Yocto devtool temp folders +/oe-logs +/oe-workdir