mirror of
https://git.freebsd.org/ports.git
synced 2025-06-23 05:30:31 -04:00
what is < 1.8.14. [1] - While I'm here silence portlint warnings re-generating patches with make makepatch and removing unnecessary DOCS check Reported by: Robert Burmeister [1]
28 lines
694 B
Text
28 lines
694 B
Text
--- install-sh.orig 2015-07-15 18:38:05 UTC
|
|
+++ install-sh
|
|
@@ -171,12 +171,6 @@ if ${DIRMODE} ; then
|
|
if [ ! -d "${DEST}" ] ; then
|
|
${MKDIR} "${DEST}" || exit 1
|
|
fi
|
|
- if ${CHOWNIT} ; then
|
|
- ${CHOWN} "${OWNER}" "${DEST}" || exit 1
|
|
- fi
|
|
- if ${CHGROUPIT} ; then
|
|
- ${CHGRP} "${GROUP}" "${DEST}" || exit 1
|
|
- fi
|
|
if ${CHMODIT} ; then
|
|
${CHMOD} "${MODE}" "${DEST}" || exit 1
|
|
fi
|
|
@@ -227,12 +221,6 @@ fi
|
|
if ${STRIPIT} ; then
|
|
${STRIP} "${DEST}" || exit 1
|
|
fi
|
|
-if ${CHOWNIT} ; then
|
|
- ${CHOWN} "${OWNER}" "${DEST}" || exit 1
|
|
-fi
|
|
-if ${CHGROUPIT} ; then
|
|
- ${CHGRP} "${GROUP}" "${DEST}" || exit 1
|
|
-fi
|
|
if ${CHMODIT} ; then
|
|
${CHMOD} "${MODE}" "${DEST}" || exit 1
|
|
fi
|