[BusyBox-cvs] busybox Makefile,1.286,1.287
Glenn McGrath
bug1 at busybox.net
Sat Sep 20 00:59:39 UTC 2003
- Previous message: [BusyBox-cvs] busybox/shell ash.c,1.80,1.81
- Next message: [BusyBox-cvs] busybox/coreutils install.c, NONE, 1.1 Config.in, 1.15, 1.16 Makefile.in, 1.4, 1.5 chgrp.c, 1.15, 1.16 chown.c, 1.24, 1.25
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
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
- Previous message: [BusyBox-cvs] busybox/shell ash.c,1.80,1.81
- Next message: [BusyBox-cvs] busybox/coreutils install.c, NONE, 1.1 Config.in, 1.15, 1.16 Makefile.in, 1.4, 1.5 chgrp.c, 1.15, 1.16 chown.c, 1.24, 1.25
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the busybox-cvs
mailing list