summarylogtreecommitdiffstats
path: root/create_hard_link.patch
diff options
context:
space:
mode:
Diffstat (limited to 'create_hard_link.patch')
-rw-r--r--create_hard_link.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/create_hard_link.patch b/create_hard_link.patch
deleted file mode 100644
index f960a9fdcf9e..000000000000
--- a/create_hard_link.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-diff --git a/src/util.c b/src/util.c
-index 4973181..32900f7 100644
---- a/src/util.c
-+++ b/src/util.c
-@@ -465,10 +465,10 @@ lilv_symlink(const char* oldpath, const char* newpath)
- int ret = 0;
- if (strcmp(oldpath, newpath)) {
- #ifdef _WIN32
-- ret = !CreateSymbolicLink(newpath, oldpath, 0);
-- if (ret) {
-+ /*ret = !CreateSymbolicLink(newpath, oldpath, 0);*/
-+ /*if (ret) {*/
- ret = !CreateHardLink(newpath, oldpath, 0);
-- }
-+ /*}*/
- #else
- ret = symlink(oldpath, newpath);
- #endif