summaryrefslogtreecommitdiff
path: root/mcon/U/lns.U
blob: d3fcd4f8ef1b94baf13e80dda8d6f795eb42cb69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
?RCS: $Id$
?RCS:
?RCS: Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi
?RCS: 
?RCS: You may redistribute only under the terms of the Artistic License,
?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 License; a copy of which may be found at the root
?RCS: of the source tree for dist 4.0.
?RCS:
?RCS: Original Author: Andy Dougherty <doughera@lafcol.lafayette.edu>
?RCS:
?RCS: $Log: lns.U,v $
?RCS: Revision 3.0.1.1  1994/06/20  07:05:52  ram
?RCS: patch30: created by ADO
?RCS:
?X:
?X: This unit checks whether symbolic links are really supported.
?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 test
?MAKE:	-pick add $@ %<
?S:lns:
?S:	This variable holds the name of the command to make 
?S:	symbolic links (if they are supported).  It can be used
?S:	in the Makefile. It is either 'ln -s' or 'ln'
?S:.
: 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"
else
	echo "Symbolic links are NOT supported." >&4
	lns="$ln"
fi
$rm -f blurfl sym