diff options
author | asami <asami@FreeBSD.org> | 1998-08-05 12:45:28 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1998-08-05 12:45:28 +0800 |
commit | 6e768acbd3c7f7a9ee70b12478c22d73133875eb (patch) | |
tree | 9d7d57a1f4475a633280361c96c28a41d72f2d15 /www/apache13/files | |
parent | 8a3d160a06196ffc3020009da38482d29dcdaace (diff) | |
download | freebsd-ports-gnome-6e768acbd3c7f7a9ee70b12478c22d73133875eb.tar.gz freebsd-ports-gnome-6e768acbd3c7f7a9ee70b12478c22d73133875eb.tar.zst freebsd-ports-gnome-6e768acbd3c7f7a9ee70b12478c22d73133875eb.zip |
"ln -s" -> "ln -sf" to make this port reinstall-friendly.
Diffstat (limited to 'www/apache13/files')
-rw-r--r-- | www/apache13/files/patch-ab | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/apache13/files/patch-ab b/www/apache13/files/patch-ab index 040690f9b1df..de82b962be4a 100644 --- a/www/apache13/files/patch-ab +++ b/www/apache13/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 - *) |\ |