summaryrefslogtreecommitdiff
path: root/mcon/U/lns.U
diff options
context:
space:
mode:
Diffstat (limited to 'mcon/U/lns.U')
-rw-r--r--mcon/U/lns.U11
1 files changed, 6 insertions, 5 deletions
diff --git a/mcon/U/lns.U b/mcon/U/lns.U
index 2c3bf26..6160bd4 100644
--- a/mcon/U/lns.U
+++ b/mcon/U/lns.U
@@ -1,12 +1,12 @@
-?RCS: $Id: lns.U,v 3.0.1.1 1994/06/20 07:05:52 ram Exp $
+?RCS: $Id$
?RCS:
-?RCS: Copyright (c) 1991-1993, Raphael Manfredi
+?RCS: Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi
?RCS:
?RCS: You may redistribute only under the terms of the Artistic Licence,
?RCS: as specified in the README file that comes with the distribution.
?RCS: You may reuse parts of this distribution only within the terms of
?RCS: that same Artistic Licence; a copy of which may be found at the root
-?RCS: of the source tree for dist 3.0.
+?RCS: of the source tree for dist 4.0.
?RCS:
?RCS: Original Author: Andy Dougherty <doughera@lafcol.lafayette.edu>
?RCS:
@@ -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 touch
+?MAKE:lns: ln rm touch test
?MAKE: -pick add $@ %<
?S:lns:
?S: This variable holds the name of the command to make
@@ -29,7 +29,8 @@
: determine whether symbolic links are supported
echo " "
$touch blurfl
-if $ln -s blurfl sym > /dev/null 2>&1 ; then
+$rm -f sym
+if $ln -s blurfl sym > /dev/null 2>&1 && $test -f sym; then
echo "Symbolic links are supported." >&4
lns="$ln -s"
else