* [Buildroot] [PATCH] Makefile: fix ignored trace at target-finalize
@ 2016-11-22 20:53 Gaël PORTAY
2016-11-22 21:33 ` Yann E. MORIN
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Gaël PORTAY @ 2016-11-22 20:53 UTC (permalink / raw)
To: buildroot
Make may throw an error (but ignored) trace when cleaning up the
rootfs.
The target-finalize rule intends to remove the folder
`$(TARGET_DIR)/usr/share' but this directory may still contain items
(such as the `udhcpc' helper script) and causes the rmdir to fail.
The stderr output is redirected to /dev/null but it returns and error
which is escaped by the leading `-'; but make reports an ignored-error.
See the log below:
$ make
(...)
rm -rf (...)/target/usr/share/gtk-doc
rmdir (...)/target/usr/share
rmdir: failed to remove '(...)/target/usr/share': Directory not empty
make[1]: [Makefile:650: target-finalize] Error 1 (ignored)
find /(...)/target -type f \( -perm /111 -o -name '*.so*' \) -not \( -name 'libpthread*.so*' -o -name 'ld-*.so*' -o -name '*.ko' \) -print0 | xargs -0 (...)/host/usr/bin/arm-buildroot-linux-uclibcgnueabihf-strip --remove-section=.comment --remove-section=.note 2>/dev/null || true
This patch apply the same rule at the instruction immediately after:
* redirecting stderr to /dev/null (already done) and
* executing true if the `rmdir' instruction fails.
Signed-off-by: Ga?l PORTAY <gael.portay@savoirfairelinux.com>
---
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index 37e4bd4..7f162e2 100644
--- a/Makefile
+++ b/Makefile
@@ -656,7 +656,7 @@ endif
rm -rf $(TARGET_DIR)/usr/info $(TARGET_DIR)/usr/share/info
rm -rf $(TARGET_DIR)/usr/doc $(TARGET_DIR)/usr/share/doc
rm -rf $(TARGET_DIR)/usr/share/gtk-doc
- -rmdir $(TARGET_DIR)/usr/share 2>/dev/null
+ rmdir $(TARGET_DIR)/usr/share 2>/dev/null || true
$(STRIP_FIND_CMD) | xargs -0 $(STRIPCMD) 2>/dev/null || true
# See http://sourceware.org/gdb/wiki/FAQ, "GDB does not see any threads
--
2.10.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH] Makefile: fix ignored trace at target-finalize
2016-11-22 20:53 [Buildroot] [PATCH] Makefile: fix ignored trace at target-finalize Gaël PORTAY
@ 2016-11-22 21:33 ` Yann E. MORIN
2016-11-23 8:24 ` Thomas Petazzoni
2016-11-23 22:22 ` Thomas Petazzoni
2 siblings, 0 replies; 5+ messages in thread
From: Yann E. MORIN @ 2016-11-22 21:33 UTC (permalink / raw)
To: buildroot
Ga"el, All,
On 2016-11-22 15:53 -0500, Ga?l PORTAY spake thusly:
> Make may throw an error (but ignored) trace when cleaning up the
> rootfs.
>
> The target-finalize rule intends to remove the folder
> `$(TARGET_DIR)/usr/share' but this directory may still contain items
> (such as the `udhcpc' helper script) and causes the rmdir to fail.
>
> The stderr output is redirected to /dev/null but it returns and error
> which is escaped by the leading `-'; but make reports an ignored-error.
>
> See the log below:
> $ make
> (...)
> rm -rf (...)/target/usr/share/gtk-doc
> rmdir (...)/target/usr/share
> rmdir: failed to remove '(...)/target/usr/share': Directory not empty
> make[1]: [Makefile:650: target-finalize] Error 1 (ignored)
> find /(...)/target -type f \( -perm /111 -o -name '*.so*' \) -not \( -name 'libpthread*.so*' -o -name 'ld-*.so*' -o -name '*.ko' \) -print0 | xargs -0 (...)/host/usr/bin/arm-buildroot-linux-uclibcgnueabihf-strip --remove-section=.comment --remove-section=.note 2>/dev/null || true
>
> This patch apply the same rule at the instruction immediately after:
> * redirecting stderr to /dev/null (already done) and
> * executing true if the `rmdir' instruction fails.
>
> Signed-off-by: Ga?l PORTAY <gael.portay@savoirfairelinux.com>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Regards,
Yann E. MORIN.
> ---
> Makefile | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/Makefile b/Makefile
> index 37e4bd4..7f162e2 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -656,7 +656,7 @@ endif
> rm -rf $(TARGET_DIR)/usr/info $(TARGET_DIR)/usr/share/info
> rm -rf $(TARGET_DIR)/usr/doc $(TARGET_DIR)/usr/share/doc
> rm -rf $(TARGET_DIR)/usr/share/gtk-doc
> - -rmdir $(TARGET_DIR)/usr/share 2>/dev/null
> + rmdir $(TARGET_DIR)/usr/share 2>/dev/null || true
> $(STRIP_FIND_CMD) | xargs -0 $(STRIPCMD) 2>/dev/null || true
>
> # See http://sourceware.org/gdb/wiki/FAQ, "GDB does not see any threads
> --
> 2.10.2
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH] Makefile: fix ignored trace at target-finalize
2016-11-22 20:53 [Buildroot] [PATCH] Makefile: fix ignored trace at target-finalize Gaël PORTAY
2016-11-22 21:33 ` Yann E. MORIN
@ 2016-11-23 8:24 ` Thomas Petazzoni
2016-11-23 14:30 ` Gaël PORTAY
2016-11-23 22:22 ` Thomas Petazzoni
2 siblings, 1 reply; 5+ messages in thread
From: Thomas Petazzoni @ 2016-11-23 8:24 UTC (permalink / raw)
To: buildroot
Hello,
On Tue, 22 Nov 2016 15:53:33 -0500, Ga?l PORTAY wrote:
> Make may throw an error (but ignored) trace when cleaning up the
> rootfs.
>
> The target-finalize rule intends to remove the folder
> `$(TARGET_DIR)/usr/share' but this directory may still contain items
> (such as the `udhcpc' helper script) and causes the rmdir to fail.
>
> The stderr output is redirected to /dev/null but it returns and error
> which is escaped by the leading `-'; but make reports an ignored-error.
Ah, what is the problem with that? Just the fact that there is this
"Error 1 (ignored)" message?
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH] Makefile: fix ignored trace at target-finalize
2016-11-23 8:24 ` Thomas Petazzoni
@ 2016-11-23 14:30 ` Gaël PORTAY
0 siblings, 0 replies; 5+ messages in thread
From: Gaël PORTAY @ 2016-11-23 14:30 UTC (permalink / raw)
To: buildroot
Thomas,
On Wed, Nov 23, 2016 at 09:24:36AM +0100, Thomas Petazzoni wrote:
> Ah, what is the problem with that? Just the fact that there is this
> "Error 1 (ignored)" message?
>
Yes, just a nitpick.
There is absolutly no error: simply the trace. Error when things are `ok'.
Also to be more consistent with what is applied at the next line:
stderr + || true.
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH] Makefile: fix ignored trace at target-finalize
2016-11-22 20:53 [Buildroot] [PATCH] Makefile: fix ignored trace at target-finalize Gaël PORTAY
2016-11-22 21:33 ` Yann E. MORIN
2016-11-23 8:24 ` Thomas Petazzoni
@ 2016-11-23 22:22 ` Thomas Petazzoni
2 siblings, 0 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2016-11-23 22:22 UTC (permalink / raw)
To: buildroot
Hello,
On Tue, 22 Nov 2016 15:53:33 -0500, Ga?l PORTAY wrote:
> Make may throw an error (but ignored) trace when cleaning up the
> rootfs.
>
> The target-finalize rule intends to remove the folder
> `$(TARGET_DIR)/usr/share' but this directory may still contain items
> (such as the `udhcpc' helper script) and causes the rmdir to fail.
>
> The stderr output is redirected to /dev/null but it returns and error
> which is escaped by the leading `-'; but make reports an ignored-error.
>
> See the log below:
> $ make
> (...)
> rm -rf (...)/target/usr/share/gtk-doc
> rmdir (...)/target/usr/share
> rmdir: failed to remove '(...)/target/usr/share': Directory not empty
> make[1]: [Makefile:650: target-finalize] Error 1 (ignored)
> find /(...)/target -type f \( -perm /111 -o -name '*.so*' \) -not \( -name 'libpthread*.so*' -o -name 'ld-*.so*' -o -name '*.ko' \) -print0 | xargs -0 (...)/host/usr/bin/arm-buildroot-linux-uclibcgnueabihf-strip --remove-section=.comment --remove-section=.note 2>/dev/null || true
>
> This patch apply the same rule at the instruction immediately after:
> * redirecting stderr to /dev/null (already done) and
> * executing true if the `rmdir' instruction fails.
>
> Signed-off-by: Ga?l PORTAY <gael.portay@savoirfairelinux.com>
> ---
> Makefile | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Applied to next, thanks.
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2016-11-23 22:22 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-11-22 20:53 [Buildroot] [PATCH] Makefile: fix ignored trace at target-finalize Gaël PORTAY
2016-11-22 21:33 ` Yann E. MORIN
2016-11-23 8:24 ` Thomas Petazzoni
2016-11-23 14:30 ` Gaël PORTAY
2016-11-23 22:22 ` Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox