diff options
author | Glenn L McGrath | 2003-09-20 00:59:35 +0000 |
---|---|---|
committer | Glenn L McGrath | 2003-09-20 00:59:35 +0000 |
commit | d72e34c7524a947ba004afff91272c27549b3085 (patch) | |
tree | dfee3e2e8d36d1448299520cb66bbbf2e34aa9ac | |
parent | d3612178b71b5c7d66252933c3e5a5980887c4ca (diff) | |
download | busybox-d72e34c7524a947ba004afff91272c27549b3085.zip busybox-d72e34c7524a947ba004afff91272c27549b3085.tar.gz |
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.
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -45,7 +45,7 @@ all: busybox busybox.links doc 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 |