Browse Source

Fix a dependency to mention libc.so, not libc.so.0, as we only have a rule to
build the former.

Bernd Schmidt 16 years ago
parent
commit
778c71e5a9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      libc/Makefile.in

+ 1 - 1
libc/Makefile.in

@@ -51,7 +51,7 @@ endif
 
 lib-a-y += $(top_builddir)lib/libc.a
 lib-gdb-y += $(top_builddir)lib/libc.gdb
-lib-so-y += $(libc)
+lib-so-y += $(libc:.$(MAJOR_VERSION)=)
 objclean-y += libc_clean
 
 OUTPUT_FORMAT = $(CC) $(CFLAGS) -Wl,--verbose 2>&1 | sed -n 's/^OUTPUT_FORMAT("\([^"]*\)",.*/OUTPUT_FORMAT ( \1 )/p'