diff options
Diffstat (limited to 'U/lns.U')
-rw-r--r-- | U/lns.U | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/U/lns.U b/U/lns.U deleted file mode 100644 index fcefb1fa32..0000000000 --- a/U/lns.U +++ /dev/null @@ -1,21 +0,0 @@ -?RCS: $Id: lns.U,v $ -?RCS: -?RCS: $Log: lns.U,v $ -?RCS: -?MAKE:lns: ln touch -?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:. -?X: We can't rely on d_symlink because that may be listed in the -?X: C library but unimplemented. -: determine whether symbolic links are supported -$touch blurfl -if $ln -s blurfl sym > /dev/null 2>&1 ; then - lns="$ln -s" -else - lns="$ln" -fi -rm -f blurfl sym |