diff options
author | hare@suse.de <hare@suse.de> | 2005-01-20 04:44:36 +0100 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 23:21:58 -0700 |
commit | 94f88ba5eebfcb45ecc99bc0c32b167204ad427a (patch) | |
tree | 78a6d955fdad3d8e8c1d28c6da9d75e658783739 | |
parent | eb064000ca62e1f854db88c5011f308492d526d6 (diff) |
[PATCH] rearrange link order in Makefile
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.
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -228,8 +228,8 @@ UDEV_OBJS = \ namedev_parse.o OBJS = \ - libsysfs/sysfs.a \ - udev.a + udev.a \ + libsysfs/sysfs.a SYSFS = $(PWD)/libsysfs/sysfs.a |