diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2008-08-28 07:35:22 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2009-03-19 20:22:35 +0100 |
commit | 62c99dac4a0b54c8030f9e1576e6f946763459f5 (patch) | |
tree | e2e3e5e64d624a8aa338e2747967a612e168e177 /recipes/fakechroot/files | |
parent | 7732204f1e737b5874629ea1469e69ee5db8b0a3 (diff) |
fakechroot: fix duplicated readlink (from Poky)
git-svn-id: https://svn.o-hand.com/repos/poky@5115 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'recipes/fakechroot/files')
-rw-r--r-- | recipes/fakechroot/files/fix-readlink.patch | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/recipes/fakechroot/files/fix-readlink.patch b/recipes/fakechroot/files/fix-readlink.patch new file mode 100644 index 0000000000..f218956790 --- /dev/null +++ b/recipes/fakechroot/files/fix-readlink.patch @@ -0,0 +1,32 @@ +--- + src/libfakechroot.c | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +--- fakechroot-2.5.orig/src/libfakechroot.c ++++ fakechroot-2.5/src/libfakechroot.c +@@ -596,11 +596,11 @@ void fakechroot_init (void) + nextsym(open64, "open64"); + #if !defined(HAVE___OPENDIR2) + nextsym(opendir, "opendir"); + #endif + nextsym(pathconf, "pathconf"); +- nextsym(readlink, "readlink"); ++ nextsym(readlink, "own_readlink"); + nextsym(realpath, "realpath"); + nextsym(remove, "remove"); + #ifdef HAVE_REMOVEXATTR + nextsym(removexattr, "removexattr"); + #endif +@@ -1864,11 +1864,11 @@ long pathconf (const char *path, int nam + return next_pathconf(path, name); + } + + + /* #include <unistd.h> */ +-int readlink (const char *path, char *buf, READLINK_TYPE_ARG3) ++int own_readlink (const char *path, char *buf, READLINK_TYPE_ARG3) + { + int status; + char tmp[FAKECHROOT_MAXPATH], *tmpptr; + char *fakechroot_path, *fakechroot_ptr, fakechroot_buf[FAKECHROOT_MAXPATH]; + |