diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1998-08-05 04:45:28 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1998-08-05 04:45:28 +0000 |
commit | 2ce280356b1cef2de9d469fcd7dc725caa87d57e (patch) | |
tree | f6c79210c4ff0ee8b3464cab3d219236730b8668 /www/apache21 | |
parent | 693741eef75533f85c1eb99b446270421a6ff867 (diff) | |
download | ports-2ce280356b1cef2de9d469fcd7dc725caa87d57e.tar.gz ports-2ce280356b1cef2de9d469fcd7dc725caa87d57e.zip |
"ln -s" -> "ln -sf" to make this port reinstall-friendly.
Notes
Notes:
svn path=/head/; revision=12284
Diffstat (limited to 'www/apache21')
-rw-r--r-- | www/apache21/files/patch-ab | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/apache21/files/patch-ab b/www/apache21/files/patch-ab index 040690f9b1df..de82b962be4a 100644 --- a/www/apache21/files/patch-ab +++ b/www/apache21/files/patch-ab @@ -87,9 +87,9 @@ ! find $(root)$(doc_prefix)/ -type f -exec chmod a+r {} \; ; \ ! # fi ! if [ ! -d $(root)$(datadir)/data ]; then \ -! $(LN) -s $(root)$(doc_prefix) $(root)$(datadir)/data; \ +! $(LN) -sf $(root)$(doc_prefix) $(root)$(datadir)/data; \ ! fi -! $(LN) -s $(root)$(doc_prefix) $(root)$(datadir)/data.default +! $(LN) -sf $(root)$(doc_prefix) $(root)$(datadir)/data.default ! # -@if [ -f $(root)$(datadir)/cgi-bin/printenv ]; then \ ! # echo "[PRESERVING EXISTING DATA SUBDIR: $(root)$(datadir)/cgi-bin/]"; \ ! # else \ @@ -100,7 +100,7 @@ ! find $(root)$(datadir)/cgi-bin.default/ -type f -exec chmod a+r {} \; ; \ ! # fi ! if [ ! -d $(root)$(datadir)/cgi-bin ]; then \ -! $(LN) -s $(root)$(datadir)/cgi-bin.default $(root)$(datadir)/cgi-bin; \ +! $(LN) -sf $(root)$(datadir)/cgi-bin.default $(root)$(datadir)/cgi-bin; \ fi @echo "Copying tree $(TOP)/icons/ -> $(root)$(datadir)/icons/"; \ (cd $(TOP)/icons/ && $(TAR) cf - *) |\ |