diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-11-04 02:21:36 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-11-04 02:21:36 +0000 |
commit | 8c7a3d7c75ac6c07368d57283f7dcb2cac3bcd27 (patch) | |
tree | 71c56dd7382b83c226925a1ab6b819140cb9c358 /libc/misc | |
parent | aeed8fa791a55eef54e25bb4d49ae8c19b441082 (diff) | |
download | uClibc-alpine-8c7a3d7c75ac6c07368d57283f7dcb2cac3bcd27.tar.bz2 uClibc-alpine-8c7a3d7c75ac6c07368d57283f7dcb2cac3bcd27.tar.xz |
initial import of a nicer output display akin to linux-2.6
Diffstat (limited to 'libc/misc')
-rw-r--r-- | libc/misc/internals/Makefile.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libc/misc/internals/Makefile.in b/libc/misc/internals/Makefile.in index c6be32a30..2916475ec 100644 --- a/libc/misc/internals/Makefile.in +++ b/libc/misc/internals/Makefile.in @@ -19,12 +19,12 @@ MISC_INTERNALS_OBJ:=$(patsubst %.c,$(MISC_INTERNALS_OUT)/%.o,$(CSRC)) STATIC_SRC:=__uClibc_main.c $(MISC_INTERNALS_OUT)/interp.c: $(MISC_INTERNALS_DIR)/Makefile.in - echo "/* Force shared libraries to know about the correct library loader */" > $@ - echo "#include <features.h>" >> $@ - echo "#ifdef __HAVE_ELF__" >> $@ - echo "const char __dl_ldso__[] __attribute__ ((section " \ + $(Q)echo "/* Force shared libraries to know about the correct library loader */" > $@ + $(Q)echo "#include <features.h>" >> $@ + $(Q)echo "#ifdef __HAVE_ELF__" >> $@ + $(Q)echo "const char __dl_ldso__[] __attribute__ ((section " \ "(\".interp\"))) =\""$(SHARED_LIB_LOADER_PREFIX)/$(UCLIBC_LDSO)"\";" >> $@ - echo "#endif" >> $@ + $(Q)echo "#endif" >> $@ libc-a-y+=$(MISC_INTERNALS_OBJ) libc-so-y+=$(MISC_INTERNALS_OBJ:.o=.os) |