Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] make clean problem and patch
@ 2008-03-27  9:52 Arndt Kritzner
  2008-03-27 12:50 ` Bernhard Fischer
  2008-03-27 15:44 ` Peter Korsgaard
  0 siblings, 2 replies; 6+ messages in thread
From: Arndt Kritzner @ 2008-03-27  9:52 UTC (permalink / raw)
  To: buildroot

"make clean" fails after incomplete build attempts because of missing
files or directories. The attached patch precedes the clean actions with
a "-" to ignore these errors. With atstk1002_defconfig the packages
avahi, dropbear, file, lzo, ncftp and strace caused this sort of aborts.
The attached patch concerns these packages.
-- 

--
###############################################################
Dipl. Ing Arndt Kritzner    Tel:    (0385) 3993 448
Logic Way GmbH              Fax:    (0385) 3993 458
Hagenower Strasse 73        HTTP:   http://www.logicway.de
19061 Schwerin              email:  mailto:kritzner at logicway.de
###############################################################
-------------- next part --------------
A non-text attachment was scrubbed...
Name: buildroot-make_clean.diff
Type: text/x-patch
Size: 2330 bytes
Desc: not available
Url : http://busybox.net/lists/buildroot/attachments/20080327/2d3fbc8a/attachment-0001.bin 

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

* [Buildroot] make clean problem and patch
  2008-03-27  9:52 [Buildroot] make clean problem and patch Arndt Kritzner
@ 2008-03-27 12:50 ` Bernhard Fischer
  2008-03-27 14:37   ` Thiago A. Corrêa
  2008-03-27 15:43   ` Peter Korsgaard
  2008-03-27 15:44 ` Peter Korsgaard
  1 sibling, 2 replies; 6+ messages in thread
From: Bernhard Fischer @ 2008-03-27 12:50 UTC (permalink / raw)
  To: buildroot

On Thu, Mar 27, 2008 at 10:52:23AM +0100, Arndt Kritzner wrote:
>"make clean" fails after incomplete build attempts because of missing
>files or directories. The attached patch precedes the clean actions with
>a "-" to ignore these errors. With atstk1002_defconfig the packages
>avahi, dropbear, file, lzo, ncftp and strace caused this sort of aborts.
>The attached patch concerns these packages.

Unfortunately your list was incomplete.
Fixed in my tree, thanks for mentioning this!

PS:
http://repo.or.cz/w/buildroot.git?a=commit;h=4c0e0b63bdc1fd65889bbaeb3d6ad8eb4d0fe22f

cheers,
Bernhard

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

* [Buildroot] make clean problem and patch
  2008-03-27 12:50 ` Bernhard Fischer
@ 2008-03-27 14:37   ` Thiago A. Corrêa
  2008-03-27 15:44     ` Peter Korsgaard
  2008-03-27 15:43   ` Peter Korsgaard
  1 sibling, 1 reply; 6+ messages in thread
From: Thiago A. Corrêa @ 2008-03-27 14:37 UTC (permalink / raw)
  To: buildroot

Bernhard,

   You are also missing dropbear, which does not have an uninstall
target and causes make clean to fail.

Cheers,
   Thiago A. Correa

On Thu, Mar 27, 2008 at 9:50 AM, Bernhard Fischer <rep.dot.nop@gmail.com> wrote:
> On Thu, Mar 27, 2008 at 10:52:23AM +0100, Arndt Kritzner wrote:
>  >"make clean" fails after incomplete build attempts because of missing
>  >files or directories. The attached patch precedes the clean actions with
>  >a "-" to ignore these errors. With atstk1002_defconfig the packages
>  >avahi, dropbear, file, lzo, ncftp and strace caused this sort of aborts.
>  >The attached patch concerns these packages.
>
>  Unfortunately your list was incomplete.
>  Fixed in my tree, thanks for mentioning this!
>
>  PS:
>  http://repo.or.cz/w/buildroot.git?a=commit;h=4c0e0b63bdc1fd65889bbaeb3d6ad8eb4d0fe22f
>
>  cheers,
>  Bernhard
>  _______________________________________________
>  buildroot mailing list
>  buildroot at uclibc.org
>  http://busybox.net/mailman/listinfo/buildroot
>

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

* [Buildroot] make clean problem and patch
  2008-03-27 12:50 ` Bernhard Fischer
  2008-03-27 14:37   ` Thiago A. Corrêa
@ 2008-03-27 15:43   ` Peter Korsgaard
  1 sibling, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2008-03-27 15:43 UTC (permalink / raw)
  To: buildroot

>>>>> "Bernhard" == Bernhard Fischer <rep.dot.nop@gmail.com> writes:

 Bernhard> On Thu, Mar 27, 2008 at 10:52:23AM +0100, Arndt Kritzner wrote:
 >> "make clean" fails after incomplete build attempts because of missing
 >> files or directories. The attached patch precedes the clean actions with
 >> a "-" to ignore these errors. With atstk1002_defconfig the packages
 >> avahi, dropbear, file, lzo, ncftp and strace caused this sort of aborts.
 >> The attached patch concerns these packages.

 Bernhard> Unfortunately your list was incomplete.
 Bernhard> Fixed in my tree, thanks for mentioning this!

Nice sed oneliner, but it doesn't handle the cases where the package
tests for the existance of the Makefile first.

I've checked in a more complete fix (including missing/wrong rm lines)
as r21516.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] make clean problem and patch
  2008-03-27  9:52 [Buildroot] make clean problem and patch Arndt Kritzner
  2008-03-27 12:50 ` Bernhard Fischer
@ 2008-03-27 15:44 ` Peter Korsgaard
  1 sibling, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2008-03-27 15:44 UTC (permalink / raw)
  To: buildroot

>>>>> "Arndt" == Arndt Kritzner <kritzner@logicway.de> writes:

Hi,

 Arndt> "make clean" fails after incomplete build attempts because of
 Arndt> missing files or directories. The attached patch precedes the
 Arndt> clean actions with a "-" to ignore these errors. With
 Arndt> atstk1002_defconfig the packages avahi, dropbear, file, lzo,
 Arndt> ncftp and strace caused this sort of aborts.  The attached
 Arndt> patch concerns these packages.

Thanks - I've checked in an extended version of this as r21516.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] make clean problem and patch
  2008-03-27 14:37   ` Thiago A. Corrêa
@ 2008-03-27 15:44     ` Peter Korsgaard
  0 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2008-03-27 15:44 UTC (permalink / raw)
  To: buildroot

>>>>> "Thiago" == Thiago A Corr?a <thiago.correa@gmail.com> writes:

 Thiago> Bernhard,
 Thiago>    You are also missing dropbear, which does not have an uninstall
 Thiago> target and causes make clean to fail.

Thanks - fixed in r21516.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2008-03-27 15:44 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-03-27  9:52 [Buildroot] make clean problem and patch Arndt Kritzner
2008-03-27 12:50 ` Bernhard Fischer
2008-03-27 14:37   ` Thiago A. Corrêa
2008-03-27 15:44     ` Peter Korsgaard
2008-03-27 15:43   ` Peter Korsgaard
2008-03-27 15:44 ` Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox