diff options
author | asami <asami@FreeBSD.org> | 1998-08-26 05:29:36 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1998-08-26 05:29:36 +0000 |
commit | 414b91c21c82bf2f2f17ee9b8b950ab5efeaddd5 (patch) | |
tree | 797a3b46d2ba55cbf54b5ea267cf6874a227fd0f /lang | |
parent | 863ec8652a920ae628f09d937550d83a2214fa7a (diff) | |
download | FreeBSD-ports-414b91c21c82bf2f2f17ee9b8b950ab5efeaddd5.zip FreeBSD-ports-414b91c21c82bf2f2f17ee9b8b950ab5efeaddd5.tar.gz |
"ln -s" -> "ln -sf"
Diffstat (limited to 'lang')
-rw-r--r-- | lang/moscow_ml/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/moscow_ml/Makefile b/lang/moscow_ml/Makefile index f9471f6..036fedf 100644 --- a/lang/moscow_ml/Makefile +++ b/lang/moscow_ml/Makefile @@ -3,7 +3,7 @@ # Date created: 2 August 1998 # Whom: chuckr # -# $Id: Makefile,v 1.9 1998/08/02 17:38:18 chuckr Exp $ +# $Id: Makefile,v 1.10 1998/08/02 17:42:01 chuckr Exp $ # DISTNAME= mos14src @@ -40,6 +40,6 @@ post-install: .endif for file in $(PREFIX)/moscow_ml/bin/*;do \ if [ -f $${file} ]; then\ - $(LN) -s $${file} $(PREFIX)/bin;fi;done + $(LN) -sf $${file} $(PREFIX)/bin;fi;done .include <bsd.port.mk> |