While building the system for a microblaze based board, I noticed the
uClibc/dso Makefile displayed the shell command:
        echo “Not building id-uClibc"
followed by the echo output.
This patch stops the Makefile from displaying the echo command. It is
installed from the petalinux-dist directory.

Index: uClibc/ldso/Makefile
===================================================================
--- uClibc/ldso/Makefile        (revision 161)
+++ uClibc/ldso/Makefile        (working copy)
@@ -26,14 +26,14 @@
 ifeq ($(strip $(BUILD_UCLIBC_LDSO)),y)
        $(MAKE) -C ldso;
 else
-       echo "Not building ld-uClibc"
+       @echo "Not building ld-uClibc"
 endif

 shared:
 ifeq ($(strip $(BUILD_UCLIBC_LDSO)),y)
        $(MAKE) -C libdl;
 else
-       echo "Not building libdl"
+       @echo "Not building libdl"
 endif

 include/dl-progname.h: Makefile
 


_______________________________________________
uClinux-dev mailing list
[email protected]
http://mailman.uclinux.org/mailman/listinfo/uclinux-dev
This message was resent by [email protected]
To unsubscribe see:
http://mailman.uclinux.org/mailman/options/uclinux-dev

Reply via email to