chiark / gitweb /
[PATCH] rearrange link order in Makefile
authorhare@suse.de <hare@suse.de>
Thu, 20 Jan 2005 03:44:36 +0000 (04:44 +0100)
committerGreg KH <gregkh@suse.de>
Wed, 27 Apr 2005 06:21:58 +0000 (23:21 -0700)
The link-order in the main Makefile is not quite correct (sysfs should
be linked after udev.a) which might cause the build to fail.

Makefile

index 52c1d47b2d76ab1126f34bab7c5f1c8480d1dc76..d56f22d0df602255b5a295a6d15a5dca11885a69 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -228,8 +228,8 @@ UDEV_OBJS = \
        namedev_parse.o
 
 OBJS = \
        namedev_parse.o
 
 OBJS = \
-       libsysfs/sysfs.a        \
-       udev.a
+       udev.a  \
+       libsysfs/sysfs.a
 
 SYSFS = $(PWD)/libsysfs/sysfs.a
 
 
 SYSFS = $(PWD)/libsysfs/sysfs.a