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 9d25e559abd9eb8d035a73563ac445e88812a513..ba2b2c3cb29f8ce5cc3d32bd02d4c4012d19c9b6 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"