Explorar el Código

Use ln feature to make links relative

Alois Mahdal hace 10 años
padre
commit
af79545574
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      mklinks

+ 1
- 1
mklinks Ver fichero

@@ -75,7 +75,7 @@ sub mklinks {
75 75
             warn "target exists: $target\n";
76 76
         } else {
77 77
 #           $source = File::Spec->abs2rel($source, $target);
78
-            `ln -s $source $target`;
78
+            `ln -sr $source $target`;
79 79
         }
80 80
     }
81 81
 }