All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/4] meta: set CLEANBROKEN for 3 recipes
@ 2015-01-14  9:20 Robert Yang
  2015-01-14  9:20 ` [PATCH 1/4] slang: set CLEANBROKEN Robert Yang
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Robert Yang @ 2015-01-14  9:20 UTC (permalink / raw)
  To: openembedded-core

The following changes since commit b61a2acc321489c3427f0afa3059486dc144a13b:

  bind: Update libxml2 check to make it deterministic. (2015-01-08 09:21:18 +0000)

are available in the git repository at:

  git://git.openembedded.org/openembedded-core-contrib rbt/clean
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=rbt/clean

Robert Yang (4):
  slang: set CLEANBROKEN
  mkelfimage: set CLEANBROKEN
  quilt: set CLEANBROKEN
  autotools.bbclass: print make clean

 meta/classes/autotools.bbclass                     |    1 +
 meta/recipes-devtools/mkelfimage/mkelfimage_git.bb |    2 ++
 meta/recipes-devtools/quilt/quilt-0.63.inc         |    2 ++
 meta/recipes-extended/slang/slang_2.2.4.bb         |    2 ++
 4 files changed, 7 insertions(+)

-- 
1.7.9.5



^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH 1/4] slang: set CLEANBROKEN
  2015-01-14  9:20 [PATCH 0/4] meta: set CLEANBROKEN for 3 recipes Robert Yang
@ 2015-01-14  9:20 ` Robert Yang
  2015-01-14  9:20 ` [PATCH 2/4] mkelfimage: " Robert Yang
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Robert Yang @ 2015-01-14  9:20 UTC (permalink / raw)
  To: openembedded-core

When make clean:
| Makefile is older than the configure script.
| Please re-run the configure script.
| make: *** [Makefile] Error 1

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta/recipes-extended/slang/slang_2.2.4.bb |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta/recipes-extended/slang/slang_2.2.4.bb b/meta/recipes-extended/slang/slang_2.2.4.bb
index f3003c9..ed1190a 100644
--- a/meta/recipes-extended/slang/slang_2.2.4.bb
+++ b/meta/recipes-extended/slang/slang_2.2.4.bb
@@ -26,6 +26,8 @@ SRC_URI = "ftp://space.mit.edu/pub/davis/slang/v2.2/slang-${PV}.tar.bz2 \
 
 inherit autotools-brokensep
 
+CLEANBROKEN = "1"
+
 SRC_URI[md5sum] = "7fcfd447e378f07dd0c0bae671fe6487"
 SRC_URI[sha256sum] = "9a8257a9a2a55099af858b13338dc8f3a06dd2069f46f0df2c9c3bb84a01d5db"
 
-- 
1.7.9.5



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 2/4] mkelfimage: set CLEANBROKEN
  2015-01-14  9:20 [PATCH 0/4] meta: set CLEANBROKEN for 3 recipes Robert Yang
  2015-01-14  9:20 ` [PATCH 1/4] slang: set CLEANBROKEN Robert Yang
@ 2015-01-14  9:20 ` Robert Yang
  2015-01-14  9:20 ` [PATCH 3/4] quilt: " Robert Yang
  2015-01-14  9:20 ` [PATCH 4/4] autotools.bbclass: print make clean Robert Yang
  3 siblings, 0 replies; 5+ messages in thread
From: Robert Yang @ 2015-01-14  9:20 UTC (permalink / raw)
  To: openembedded-core

Fix when rebuild:
| DEBUG: Executing shell function autotools_preconfigure
| Makefile:1: Makefile.conf: No such file or directory

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta/recipes-devtools/mkelfimage/mkelfimage_git.bb |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta/recipes-devtools/mkelfimage/mkelfimage_git.bb b/meta/recipes-devtools/mkelfimage/mkelfimage_git.bb
index bcf68a8..28aff91 100644
--- a/meta/recipes-devtools/mkelfimage/mkelfimage_git.bb
+++ b/meta/recipes-devtools/mkelfimage/mkelfimage_git.bb
@@ -14,6 +14,8 @@ SRC_URI = "git://review.coreboot.org/p/coreboot;protocol=http \
            file://fix-makefile-to-find-libz.patch   \
           "
 
+CLEANBROKEN = "1"
+
 S = "${WORKDIR}/git/util/mkelfImage"
 
 CFLAGS += "-fno-stack-protector"
-- 
1.7.9.5



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 3/4] quilt: set CLEANBROKEN
  2015-01-14  9:20 [PATCH 0/4] meta: set CLEANBROKEN for 3 recipes Robert Yang
  2015-01-14  9:20 ` [PATCH 1/4] slang: set CLEANBROKEN Robert Yang
  2015-01-14  9:20 ` [PATCH 2/4] mkelfimage: " Robert Yang
@ 2015-01-14  9:20 ` Robert Yang
  2015-01-14  9:20 ` [PATCH 4/4] autotools.bbclass: print make clean Robert Yang
  3 siblings, 0 replies; 5+ messages in thread
From: Robert Yang @ 2015-01-14  9:20 UTC (permalink / raw)
  To: openembedded-core

Fix when rebuild:
| DEBUG: Executing shell function autotools_preconfigure
| Please run ./configure
| make: *** [Makefile] Error 1

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta/recipes-devtools/quilt/quilt-0.63.inc |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta/recipes-devtools/quilt/quilt-0.63.inc b/meta/recipes-devtools/quilt/quilt-0.63.inc
index 433d6b4..220a3bc 100644
--- a/meta/recipes-devtools/quilt/quilt-0.63.inc
+++ b/meta/recipes-devtools/quilt/quilt-0.63.inc
@@ -19,6 +19,8 @@ EXTRA_OECONF_darwin += "--without-date \
                         --without-getopt \
                         "
 
+CLEANBROKEN = "1"
+
 PACKAGES += "guards guards-doc"
 FILES_${PN} = "${sysconfdir} ${datadir}/quilt \
                ${bindir}/quilt ${libdir}/quilt"
-- 
1.7.9.5



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 4/4] autotools.bbclass: print make clean
  2015-01-14  9:20 [PATCH 0/4] meta: set CLEANBROKEN for 3 recipes Robert Yang
                   ` (2 preceding siblings ...)
  2015-01-14  9:20 ` [PATCH 3/4] quilt: " Robert Yang
@ 2015-01-14  9:20 ` Robert Yang
  3 siblings, 0 replies; 5+ messages in thread
From: Robert Yang @ 2015-01-14  9:20 UTC (permalink / raw)
  To: openembedded-core

It makes us easier to see make clean failed.

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta/classes/autotools.bbclass |    1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass
index ca04e79..402ee1b 100644
--- a/meta/classes/autotools.bbclass
+++ b/meta/classes/autotools.bbclass
@@ -111,6 +111,7 @@ autotools_preconfigure() {
 				# regenerate them even if CFLAGS/LDFLAGS are different
 				cd ${S}
 				if [ "${CLEANBROKEN}" != "1" -a \( -e Makefile -o -e makefile -o -e GNUmakefile \) ]; then
+					echo "Running \"${MAKE} clean\" in ${S}"
 					${MAKE} clean
 				fi
 				find ${S} -name \*.la -delete
-- 
1.7.9.5



^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2015-01-14  9:20 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-14  9:20 [PATCH 0/4] meta: set CLEANBROKEN for 3 recipes Robert Yang
2015-01-14  9:20 ` [PATCH 1/4] slang: set CLEANBROKEN Robert Yang
2015-01-14  9:20 ` [PATCH 2/4] mkelfimage: " Robert Yang
2015-01-14  9:20 ` [PATCH 3/4] quilt: " Robert Yang
2015-01-14  9:20 ` [PATCH 4/4] autotools.bbclass: print make clean Robert Yang

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.