# HG changeset patch # User Thomas Arendsen Hein # Date 1165007345 -3600 # Node ID 0f550b87deb8696e29647470ccde163823ae1381 # Parent f9567a7fa3b3f2281046f2e43c84a4e2fb5c6908 Compatibility fix for 'ln -sf'. ln of Solaris 8 only accepts "ln -f -s" (in that order), but as the -f isn't needed here, I simply dropped it. diff --git a/tests/test-symlinks b/tests/test-symlinks --- a/tests/test-symlinks +++ b/tests/test-symlinks @@ -35,7 +35,7 @@ rm a.c rm dir/a.o rm dir/b.o mkdir dir/a.o -ln -sf nonexist dir/b.o +ln -s nonexist dir/b.o mkfifo a.c # it should show a.c, dir/a.o and dir/b.o deleted hg status