[BusyBox-cvs] busybox Makefile,1.286,1.287

Glenn McGrath bug1 at busybox.net
Sat Sep 20 00:59:39 UTC 2003


Update of /var/cvs/busybox
In directory winder:/tmp/cvs-serv31985

Modified Files:
	Makefile 
Log Message:
Patch by Steinar H. Gunderson to fix debian bug #211675.
Linking to my_getgrnam from libpwdgrp wasnt working, instead it was 
trying to use functionality from glibc, which pulled in libnss.


Index: Makefile
===================================================================
RCS file: /var/cvs/busybox/Makefile,v
retrieving revision 1.286
retrieving revision 1.287
diff -u -d -r1.286 -r1.287
--- Makefile	29 Aug 2003 13:25:55 -0000	1.286
+++ Makefile	20 Sep 2003 00:59:35 -0000	1.287
@@ -45,7 +45,7 @@
 include $(patsubst %,%/Makefile.in, $(DIRS))
 
 busybox: .depend include/config.h $(libraries-y)
-	$(CC) $(LDFLAGS) -o $@ $(libraries-y) $(LIBRARIES)
+	$(CC) $(LDFLAGS) -o $@ -Wl,--start-group $(libraries-y) $(LIBRARIES) -Wl,--end-group
 	$(STRIPCMD) $@
 
 busybox.links: applets/busybox.mkll include/config.h




More information about the busybox-cvs mailing list