From: Roland McGrath Date: Tue, 11 Jun 1996 21:33:17 +0000 (+0000) Subject: * string/basename.c (basename): Cast FILENAME to char * for return. X-Git-Tag: upstream/2.20~22391 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d8c7ef98c193aa032327efcb7cab081da4025908;p=platform%2Fupstream%2Flinaro-glibc.git * string/basename.c (basename): Cast FILENAME to char * for return. * Makerules ($(libdir)/libc.so): Put $(rtld-installed) name between libc.so and libc.a in the deps. --- diff --git a/ChangeLog b/ChangeLog index bfa537b..720acbb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ Tue Jun 11 15:09:15 1996 Roland McGrath + * string/basename.c (basename): Cast FILENAME to char * for return. + + * Makerules ($(libdir)/libc.so): Put $(rtld-installed) name between + libc.so and libc.a in the deps. + * elf/Makefile ($(objpfx)$(rtld-installed-name)): New target to make link to ld.so if that is not the installed name. (lib-noranlib): Depend on the installed name in the build directory diff --git a/Makerules b/Makerules index 27053f3..ff6adcf 100644 --- a/Makerules +++ b/Makerules @@ -595,9 +595,13 @@ ifndef subdir # table of the shared libc object. install: $(libdir)/libc.so $(libdir)/libc.so: $(common-objpfx)libc.so$(libc.so-version) \ + $(elfobjdir)/$(rtld-installed-name) \ $(common-objpfx)libc.a (echo '/* Use the shared library, but some functions are only in';\ - echo ' the static library, so try that secondarily. */';\ + echo ' the static library, so try that secondarily.'; \ + echo ' The dynamic linker defines some functions used by $( $@.new mv -f $@.new $@ diff --git a/string/basename.c b/string/basename.c index 95bc003..57a5954 100644 --- a/string/basename.c +++ b/string/basename.c @@ -23,5 +23,5 @@ char * basename (const char *filename) { char *p = strrchr (filename, '/'); - return p ? p + 1 : filename; + return p ? p + 1 : (char *) filename; }