diff options
author | Mark Whitley <markw@lineo.com> | 2001-03-27 18:22:41 +0000 |
---|---|---|
committer | Mark Whitley <markw@lineo.com> | 2001-03-27 18:22:41 +0000 |
commit | 2b549c3be0cadb5617dc1bb2984cb26c0e085147 (patch) | |
tree | 2df66797d2aac03f7f33a55d3258fbf3ac8bf7eb /Makefile | |
parent | 5cd2a2d53e5dd395a88d4d1ca6cd832c7f870fb5 (diff) | |
download | busybox-2b549c3be0cadb5617dc1bb2984cb26c0e085147.tar.gz |
Fixed the Makefile so busybox can link against libc5 again. Putting libbb.a at
the end broke it.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" |