summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorolh@suse.de <olh@suse.de>2003-11-23 05:58:21 -0800
committerGreg KH <gregkh@suse.de>2005-04-26 21:06:26 -0700
commited839137305753796486b9d4570e68d04748d497 (patch)
tree18918061736b2c4d0f9ca6e27ce26251debb5c63 /Makefile
parenta367f04ee0a45a9ad342e04532c73eb0cc179793 (diff)
[PATCH] static klibc udev does not link against crt0.o
On Wed, Nov 19, Greg KH wrote: > > I did 'make KLIBC=true' in the current bk tree. > > try 'make -f Makefile.klibc' in the current tree. For some reason I > couldn't figure out how to have Makefile work for both KLIBC=true and > KLIBC=false. But I didn't try too hard :) I dont understand that. please do rm -f Makefile.klibc; apply this patch and tell me what fails. works for me.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index fa29c8859b..fc5c9b1792 100644
--- a/Makefile
+++ b/Makefile
@@ -166,7 +166,7 @@ udev_version.h:
$(ROOT): $(GEN_HEADERS) $(OBJS)
- $(CC) $(LDFLAGS) -o $(ROOT) $(OBJS) $(LIB_OBJS) $(ARCH_LIB_OBJS)
+ $(CC) $(LDFLAGS) -o $(ROOT) $(CRT0) $(OBJS) $(LIB_OBJS) $(ARCH_LIB_OBJS)
$(STRIPCMD) $(ROOT)
clean:
@@ -215,7 +215,7 @@ install: all
$(INSTALL_DATA) -D udev.8 $(DESTDIR)$(mandir)/man8/udev.8
$(INSTALL_DATA) udev.config $(DESTDIR)$(configdir)
$(INSTALL_DATA) udev.permissions $(DESTDIR)$(configdir)
- - rm $(DESTDIR)$(hotplugdir)/udev.hotplug
+ - rm -f $(DESTDIR)$(hotplugdir)/udev.hotplug
- ln -s $(sbindir)/$(ROOT) $(DESTDIR)$(hotplugdir)/udev.hotplug
uninstall: