diff options
author | linimon <linimon@FreeBSD.org> | 2008-03-30 09:23:42 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2008-03-30 09:23:42 +0800 |
commit | cb18efa60755fcb1a605b233acca4bc588211ee6 (patch) | |
tree | 6a970315e918f7624f2868870f51e099e4d4ee4a /ports-mgmt | |
parent | ea4b784b3da8dfc0826de86649a2444314fb112c (diff) | |
download | freebsd-ports-gnome-cb18efa60755fcb1a605b233acca4bc588211ee6.tar.gz freebsd-ports-gnome-cb18efa60755fcb1a605b233acca4bc588211ee6.tar.zst freebsd-ports-gnome-cb18efa60755fcb1a605b233acca4bc588211ee6.zip |
Catch up with master 1.588 (comments only).
Diffstat (limited to 'ports-mgmt')
-rw-r--r-- | ports-mgmt/portmk/Mk/bsd.port.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ports-mgmt/portmk/Mk/bsd.port.mk b/ports-mgmt/portmk/Mk/bsd.port.mk index 3302687e2c93..d0b4798bd899 100644 --- a/ports-mgmt/portmk/Mk/bsd.port.mk +++ b/ports-mgmt/portmk/Mk/bsd.port.mk @@ -581,7 +581,7 @@ FreeBSD_MAINTAINER= portmgr@FreeBSD.org # - A command to install binary executables. (By # default, also strips them, unless ${STRIP} is # overridden to be the empty string). -# INSTALL_KLD - As INSTALL_KLD, but without the STRIP. +# INSTALL_KLD - As INSTALL_PROGRAM, but without the STRIP. # INSTALL_SCRIPT # - A command to install executable scripts. # INSTALL_DATA - A command to install sharable data. @@ -2469,7 +2469,7 @@ INSTALL_MACROS= BSD_INSTALL_PROGRAM="${INSTALL_PROGRAM}" \ MAKE_ENV+= ${INSTALL_MACROS} SCRIPTS_ENV+= ${INSTALL_MACROS} -# Macro for coping entire directory tree with correct permissions +# Macro for copying entire directory tree with correct permissions .if ${UID} == 0 COPYTREE_BIN= ${SH} -c '(${FIND} -d $$0 $$2 | ${CPIO} -dumpl $$1 >/dev/null \ 2>&1) && \ |