mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
12 lines
170 B
Bash
12 lines
170 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
|