summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrmanfredi <rmanfredi@2592e710-e01b-42a5-8df0-11608a6cc53d>2012-11-03 00:00:58 +0000
committerrmanfredi <rmanfredi@2592e710-e01b-42a5-8df0-11608a6cc53d>2012-11-03 00:00:58 +0000
commit1d63bad75a91360f9be34354e42ef2f15f4cb94b (patch)
tree1d020da0ccd5285a7c037f2f7d4b1cf4c10afca2
parentcd8d914044ecca04c271984ee7b5296c42ae16f1 (diff)
Fixed broken check for symlink support.
git-svn-id: svn://svn.code.sf.net/p/dist/code/trunk/dist@150 2592e710-e01b-42a5-8df0-11608a6cc53d
-rw-r--r--mcon/U/lns.U3
1 files changed, 2 insertions, 1 deletions
diff --git a/mcon/U/lns.U b/mcon/U/lns.U
index d2475df..453716d 100644
--- a/mcon/U/lns.U
+++ b/mcon/U/lns.U
@@ -19,7 +19,7 @@
?X: We can't rely on d_symlink because that may be listed in the
?X: C library but unimplemented.
?X:
-?MAKE:lns: ln rm test
+?MAKE:lns: ln rm touch test
?MAKE: -pick add $@ %<
?S:lns:
?S: This variable holds the name of the command to make
@@ -29,6 +29,7 @@
: determine whether symbolic links are supported
echo " "
$rm -f blurfl sym
+$touch blurfl
if $ln -s blurfl sym > /dev/null 2>&1 && $test -f sym; then
echo "Symbolic links are supported." >&4
lns="$ln -s"