diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2015-06-18 14:11:59 -0400 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2015-06-18 14:11:59 -0400 |
commit | 5e11fe2da443badbc5e5f5e2fb2434e0875b4e7c (patch) | |
tree | d5b47a19525f54917202e253658aff5806ed62c9 /src/udev/udevd.c | |
parent | 52a4d0c0d509e89571fdd7233b9b259c5fcafe52 (diff) |
Rename mkdir_p -> udev_mkdir_p to avoid symbol collisions.
While usptream doesn't support a static libudev.a, we will try to
do so. However, mkdir_p() is used in lvm2 and util-linux, so
to avoid the collision, we rename it to udev_mkdir_p(). See:
https://bugs.gentoo.org/show_bug.cgi?id=520450
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'src/udev/udevd.c')
-rw-r--r-- | src/udev/udevd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/udev/udevd.c b/src/udev/udevd.c index f4076b1357..e2cd9050e5 100644 --- a/src/udev/udevd.c +++ b/src/udev/udevd.c @@ -1301,7 +1301,7 @@ int main(int argc, char *argv[]) { IN_DELETE | IN_MOVE | IN_CLOSE_WRITE); if (access(UDEV_ROOT_RUN "/udev/rules.d", F_OK) < 0) { - mkdir_p(UDEV_ROOT_RUN "/udev/rules.d", 0755); + udev_mkdir_p(UDEV_ROOT_RUN "/udev/rules.d", 0755); } inotify_add_watch(fd_inotify, UDEV_ROOT_RUN "/udev/rules.d", IN_DELETE | IN_MOVE | IN_CLOSE_WRITE); |