diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2009-01-03 18:32:56 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2009-01-03 18:32:56 +0000 |
commit | 8bc4105ddff851fc0e2c716d677b52236f6c3209 (patch) | |
tree | eb210b6d6b919a5ec850601441dabdad9ce072b7 /meta/packages/fakechroot/files | |
parent | d0cff01fba28a120bb353f89d18a9ea981e68a6a (diff) | |
download | openembedded-core-8bc4105ddff851fc0e2c716d677b52236f6c3209.tar.gz openembedded-core-8bc4105ddff851fc0e2c716d677b52236f6c3209.tar.bz2 openembedded-core-8bc4105ddff851fc0e2c716d677b52236f6c3209.tar.xz openembedded-core-8bc4105ddff851fc0e2c716d677b52236f6c3209.zip |
fakechroot: Clean up and convert to BBCLASSEXTEND
Diffstat (limited to 'meta/packages/fakechroot/files')
-rw-r--r-- | meta/packages/fakechroot/files/fix-readlink.patch | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/meta/packages/fakechroot/files/fix-readlink.patch b/meta/packages/fakechroot/files/fix-readlink.patch deleted file mode 100644 index f21895679..000000000 --- a/meta/packages/fakechroot/files/fix-readlink.patch +++ /dev/null @@ -1,32 +0,0 @@ ---- - 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]; - |