View | Details | Raw Unified | Return to bug 199550
Collapse All | Expand All

(-)Mk/bsd.port.mk (-6 / +6 lines)
Lines 2172-2185 MAKE_ENV+= ${INSTALL_MACROS} Link Here
2172
SCRIPTS_ENV+=	${INSTALL_MACROS}
2183
SCRIPTS_ENV+=	${INSTALL_MACROS}
2173
2184
2174
# Macro for copying entire directory tree with correct permissions
2185
# Macro for copying entire directory tree with correct permissions
2175
COPYTREE_BIN=	${SH} -c '(${FIND} -d $$0 $$2 | ${CPIO} -dumpl $$1 >/dev/null \
2186
COPYTREE_BIN=	${SH} -c '(eval ${FIND} -d $$0 $$2 | ${CPIO} -dumpl $$1 >/dev/null \
2176
					2>&1) && \
2187
					2>&1) && \
2177
					${FIND} -d $$0 $$2 -type d -exec chmod 755 $$1/{} \; && \
2188
					(eval ${FIND} -d $$0 $$2 -type d -exec chmod 755 $$1/{} \\\;) && \
2178
					${FIND} -d $$0 $$2 -type f -exec chmod ${BINMODE} $$1/{} \;' --
2189
					(eval ${FIND} -d $$0 $$2 -type f -exec chmod ${BINMODE} $$1/{} \\\;)' --
2179
COPYTREE_SHARE=	${SH} -c '(${FIND} -d $$0 $$2 | ${CPIO} -dumpl $$1 >/dev/null \
2190
COPYTREE_SHARE=	${SH} -c '(eval ${FIND} -d $$0 $$2 | ${CPIO} -dumpl $$1 >/dev/null \
2180
					2>&1) && \
2191
					2>&1) && \
2181
					${FIND} -d $$0 $$2 -type d -exec chmod 755 $$1/{} \; && \
2192
					(eval ${FIND} -d $$0 $$2 -type d -exec chmod 755 $$1/{} \\\;) && \
2182
					${FIND} -d $$0 $$2 -type f -exec chmod ${SHAREMODE} $$1/{} \;' --
2193
					(eval ${FIND} -d $$0 $$2 -type f -exec chmod ${SHAREMODE} $$1/{} \\\;)' --
2183
2194
2184
# The user can override the NO_PACKAGE by specifying this from
2195
# The user can override the NO_PACKAGE by specifying this from
2185
# the make command line
2196
# the make command line

Return to bug 199550