diff options
author | Matt Kraai <kraai@debian.org> | 2001-04-23 16:11:57 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2001-04-23 16:11:57 +0000 |
commit | 8a24a65d2f90107f772b98f445bcdadd4d466207 (patch) | |
tree | 95ab926cbaee2aeb4cc1ec13a20e9443d0d6a695 /Makefile | |
parent | ed424dbf1d3d4f0448b9bfdc6b6128d4c90514ee (diff) | |
download | busybox-8a24a65d2f90107f772b98f445bcdadd4d466207.tar.gz |
Change link order so that libbb functions use libpwd.a when appropriate.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" |