summarylogtreecommitdiffstats
path: root/lilv_symlink.patch
blob: 0f2531bf861642871c006c85251651a6419f9007 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
diff -crB lilv-0.24.4/src/util.c lilv-0.24.4_patched/src/util.c
*** lilv-0.24.4/src/util.c	2018-07-21 09:10:18.000000000 +0100
--- lilv-0.24.4_patched/src/util.c	2019-04-12 05:10:21.891170609 +0100
***************
*** 465,474 ****
  	int ret = 0;
  	if (strcmp(oldpath, newpath)) {
  #ifdef _WIN32
! 		ret = !CreateSymbolicLink(newpath, oldpath, 0);
! 		if (ret) {
  			ret = !CreateHardLink(newpath, oldpath, 0);
! 		}
  #else
  		ret = symlink(oldpath, newpath);
  #endif
--- 465,474 ----
  	int ret = 0;
  	if (strcmp(oldpath, newpath)) {
  #ifdef _WIN32
! 		/*ret = !CreateSymbolicLink(newpath, oldpath, 0);*/
! 		/*if (ret) {*/
  			ret = !CreateHardLink(newpath, oldpath, 0);
! 		/*}*/
  #else
  		ret = symlink(oldpath, newpath);
  #endif