Fixed the Makefile so busybox can link against libc5 again. Putting libbb.a at

the end broke it.
This commit is contained in:
Mark Whitley 2001-03-27 18:22:41 +00:00
parent 5cd2a2d53e
commit 2b549c3be0

View File

@ -308,7 +308,7 @@ docs/busybox/busyboxdocumentation.html: docs/busybox.sgml
busybox: $(PWD_LIB) $(LIBBB_LIB) $(OBJECTS)
$(CC) $(LDFLAGS) -o $@ $(OBJECTS) $(LIBRARIES) $(PWD_LIB) $(LIBBB_LIB)
$(CC) $(LDFLAGS) -o $@ $(OBJECTS) $(PWD_LIB) $(LIBBB_LIB) $(LIBRARIES)
$(STRIP)
# Without VPATH, rule expands to "/bin/sh busybox.mkll Config.h applets.h"