aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2001-04-23 16:11:57 +0000
committerMatt Kraai <kraai@debian.org>2001-04-23 16:11:57 +0000
commit8a24a65d2f90107f772b98f445bcdadd4d466207 (patch)
tree95ab926cbaee2aeb4cc1ec13a20e9443d0d6a695 /Makefile
parented424dbf1d3d4f0448b9bfdc6b6128d4c90514ee (diff)
downloadbusybox-8a24a65d2f90107f772b98f445bcdadd4d466207.tar.gz
Change link order so that libbb functions use libpwd.a when appropriate.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1fefecd10..791357fa9 100644
--- a/Makefile
+++ b/Makefile
@@ -329,7 +329,7 @@ docs/busybox/busyboxdocumentation.html: docs/busybox.sgml
busybox: $(PWD_LIB) $(LIBBB_LIB) $(OBJECTS)
- $(CC) $(LDFLAGS) -o $@ $(OBJECTS) $(PWD_LIB) $(LIBBB_LIB) $(LIBRARIES)
+ $(CC) $(LDFLAGS) -o $@ $(OBJECTS) $(LIBBB_LIB) $(PWD_LIB) $(LIBRARIES)
$(STRIP)
# Without VPATH, rule expands to "/bin/sh busybox.mkll Config.h applets.h"