diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2004-04-09 18:54:13 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2004-04-09 18:54:13 +0000 |
commit | 9a0e35fd7d3f52de64e1cd146e30052b4cede16b (patch) | |
tree | 4737770dcf83e4ef64826bb6dffab3d241891b61 /www/squid31/files/squid.sh | |
parent | - Fix build on non-i386 systems. (diff) |
- Integrate two new vendor patches, please see
<http://www.squid-cache.org/Versions/v2/2.5/bugs/> for details
- Correct OpenSSL support and, while at it, clean up CFLAGS and
LDFLAGS handling (thanks to dinoex for lots of helpful advice!).
- better be safe than sorry and pass PTHREAD_CFLAGS through in
case we are compiling with threads
- try to remove the errorpages directory silently since user
defined directories might legitimately be present
- clean up shell scripting:
+ do not use too many variables
+ use /bin/sh's features instead of external commands
PR: ports/65356
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=106605
Diffstat (limited to 'www/squid31/files/squid.sh')
-rw-r--r-- | www/squid31/files/squid.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/squid31/files/squid.sh b/www/squid31/files/squid.sh index 5fbf1f3d24ba..73fb0504db7a 100644 --- a/www/squid31/files/squid.sh +++ b/www/squid31/files/squid.sh @@ -61,7 +61,7 @@ else fi ;; *) - echo "usage: `basename $0` {start|stop}" >&2 + echo "usage: ${0##*/} {start|stop}" >&2 exit 64 ;; esac |