diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2009-03-03 08:52:56 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-03-03 08:52:56 +0000 |
commit | bbdf9df60a72afd3e36c88e94e1f3fddf6cad185 (patch) | |
tree | 0d8f7842a98d4c3fcda60bddd67129970dab51fb /package/util-linux/util-linux-umount2-fix.patch | |
parent | 890412421b1c5ef5dcc4fe9483fb172961adb973 (diff) |
util-linux: bump version
Fixes #19
Diffstat (limited to 'package/util-linux/util-linux-umount2-fix.patch')
-rw-r--r-- | package/util-linux/util-linux-umount2-fix.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/package/util-linux/util-linux-umount2-fix.patch b/package/util-linux/util-linux-umount2-fix.patch new file mode 100644 index 000000000..14b6c3481 --- /dev/null +++ b/package/util-linux/util-linux-umount2-fix.patch @@ -0,0 +1,20 @@ +[PATCH] fix multiple definitions of umount2 issue + +Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk> +--- + mount/umount.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +Index: util-linux-2.13-pre7/mount/umount.c +=================================================================== +--- util-linux-2.13-pre7.orig/mount/umount.c ++++ util-linux-2.13-pre7/mount/umount.c +@@ -29,7 +29,7 @@ + #include "nfsmount.h" + #include <arpa/inet.h> + +-#if defined(MNT_FORCE) && !defined(__sparc__) && !defined(__arm__) ++#if 1 + /* Interesting ... it seems libc knows about MNT_FORCE and presumably + about umount2 as well -- need not do anything */ + #else /* MNT_FORCE */ |