Fixed the Makefile so busybox can link against libc5 again. Putting libbb.a at
authorMark Whitley <markw@lineo.com>
Tue, 27 Mar 2001 18:22:41 +0000 (18:22 -0000)
committerMark Whitley <markw@lineo.com>
Tue, 27 Mar 2001 18:22:41 +0000 (18:22 -0000)
the end broke it.

Makefile

index 9d25e55..ba2b2c3 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -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"