aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2003-09-20 00:59:35 +0000
committerbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2003-09-20 00:59:35 +0000
commit9c678a9d982552ed14f26255781d16c58fbf9bc9 (patch)
treedfee3e2e8d36d1448299520cb66bbbf2e34aa9ac /Makefile
parentb576eeffb14db5c208fc7ac96d68dad97180e94e (diff)
downloadbusybox-w32-9c678a9d982552ed14f26255781d16c58fbf9bc9.tar.gz
busybox-w32-9c678a9d982552ed14f26255781d16c58fbf9bc9.tar.bz2
busybox-w32-9c678a9d982552ed14f26255781d16c58fbf9bc9.zip
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. git-svn-id: svn://busybox.net/trunk/busybox@7549 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b99bb4f18..819edfb35 100644
--- a/Makefile
+++ b/Makefile
@@ -45,7 +45,7 @@ all: busybox busybox.links doc
45include $(patsubst %,%/Makefile.in, $(DIRS)) 45include $(patsubst %,%/Makefile.in, $(DIRS))
46 46
47busybox: .depend include/config.h $(libraries-y) 47busybox: .depend include/config.h $(libraries-y)
48 $(CC) $(LDFLAGS) -o $@ $(libraries-y) $(LIBRARIES) 48 $(CC) $(LDFLAGS) -o $@ -Wl,--start-group $(libraries-y) $(LIBRARIES) -Wl,--end-group
49 $(STRIPCMD) $@ 49 $(STRIPCMD) $@
50 50
51busybox.links: applets/busybox.mkll include/config.h 51busybox.links: applets/busybox.mkll include/config.h