aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Whitley <markw@lineo.com>2001-03-27 18:22:41 +0000
committerMark Whitley <markw@lineo.com>2001-03-27 18:22:41 +0000
commit2b549c3be0cadb5617dc1bb2984cb26c0e085147 (patch)
tree2df66797d2aac03f7f33a55d3258fbf3ac8bf7eb
parent5cd2a2d53e5dd395a88d4d1ca6cd832c7f870fb5 (diff)
downloadbusybox-2b549c3be0cadb5617dc1bb2984cb26c0e085147.tar.gz
Fixed the Makefile so busybox can link against libc5 again. Putting libbb.a at
the end broke it.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9d25e559a..ba2b2c3cb 100644
--- 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"