diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-06-22 12:35:24 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-06-22 12:35:24 +0000 |
commit | f98b60c0eec376a964597c4ecc7d8b7ec2e73c9f (patch) | |
tree | b2a8e6888d2a7a80d837adfc52640ac4d443357f /extra | |
parent | 3ffa1c0156d031173967b0e85362615adc97f1d2 (diff) | |
download | aports-f98b60c0eec376a964597c4ecc7d8b7ec2e73c9f.tar.bz2 aports-f98b60c0eec376a964597c4ecc7d8b7ec2e73c9f.tar.xz |
extra/squid: make the helper scripts executable
some of the helper scripts in /usr/lib/squid did not have execute
permissions.
Diffstat (limited to 'extra')
-rw-r--r-- | extra/squid/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/extra/squid/APKBUILD b/extra/squid/APKBUILD index b19dd85dcf..ac840cbbd5 100644 --- a/extra/squid/APKBUILD +++ b/extra/squid/APKBUILD @@ -3,7 +3,7 @@ pkgname=squid pkgver=2.7.6 _ver=2.7.STABLE6 -pkgrel=4 +pkgrel=5 pkgdesc="A full-featured Web proxy cache server." url="http://www.squid-cache.org" install="squid.post-install" @@ -86,6 +86,7 @@ build() { "$pkgdir"/etc/logrotate.d/squid mkdir -p "$pkgdir"/var/cache/squid "$pkgdir"/var/log/squid + chmod +x "$pkgdir"/usr/lib/squid/* } |