Now using hardlinks because those will always resolve correctly on a
authorErik Brakkee <erik@brakkee.org>
Sat, 22 Aug 2009 11:28:55 +0000 (11:28 +0000)
committerErik Brakkee <erik@brakkee.org>
Sat, 22 Aug 2009 11:28:55 +0000 (11:28 +0000)
client
that mounts the directory using NFS

mythtv/monitor/src/main/java/org/wamblee/mythtv/LinkStructure.java

index 01488be451174fe47789a528b6bc0ce17e21d9b3..4d3be3644009b30e9ae233c71d1c8b6a6a2aaf8e 100644 (file)
@@ -207,7 +207,7 @@ public class LinkStructure implements Listener {
     private void createSymLink(String aTarget, String aSource) {
         try {
             SimpleProcess process = new SimpleProcess(_linkDir, new String[] {
-                    "ln", "-s", aTarget, aSource });
+                    "ln", aTarget, aSource });
             process.run();
             LOG.info("Created symlink " + aSource + " -> " + aTarget);
         } catch (IOException e) {