mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
de8a9e2851
for making secure pipes across the internet (etc.)
13 lines
171 B
Bash
13 lines
171 B
Bash
#!/bin/sh
|
|
|
|
#
|
|
# Set user-writable flags so patch(1) doesn't trip up.
|
|
#
|
|
|
|
FIXDIRS="${WRKSRC}/skip/man ${WRKSRC}/admin"
|
|
|
|
for DIR in ${FIXDIRS}; do
|
|
chmod -R u+w ${DIR}
|
|
done
|
|
|