summaryrefslogtreecommitdiff
path: root/kerberosIV/ss/Makefile
diff options
context:
space:
mode:
authorThorsten Lockert <tholo@cvs.openbsd.org>1995-12-17 18:20:21 +0000
committerThorsten Lockert <tholo@cvs.openbsd.org>1995-12-17 18:20:21 +0000
commit9fb54ebb767ed1b78b0120a51fa8f84d038c0cb0 (patch)
tree5e9c9504a6ba82b9a6fd06ae7dd2469ecc5a5ed4 /kerberosIV/ss/Makefile
parent2342247dc2e859dd1462dc940c62443d260ac9d3 (diff)
Only create symlink if it does not exist
Diffstat (limited to 'kerberosIV/ss/Makefile')
-rw-r--r--kerberosIV/ss/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/kerberosIV/ss/Makefile b/kerberosIV/ss/Makefile
index e59ff8eafa8..0866f41e542 100644
--- a/kerberosIV/ss/Makefile
+++ b/kerberosIV/ss/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.1 1995/12/14 06:52:47 tholo Exp $
+# $Id: Makefile,v 1.2 1995/12/17 18:20:20 tholo Exp $
LIB= ss
SRCS= ss_err.c data.c error.c execute_cmd.c help.c invocation.c list_rqs.c \
@@ -29,6 +29,6 @@ beforeinstall:
fi
beforedepend:
- ln -s . ss
+ test -h ss || ln -s . ss
.include <bsd.lib.mk>