Explorar el Código

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

Bernd Schmidt hace 16 años
padre
commit
778c71e5a9
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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'