[Midnightbsd-cvs] mports: bsd.mport.mk: Add INSTALL_KLD for "some" compatibility with
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Mon Apr 14 02:06:37 EDT 2008
Log Message:
-----------
Add INSTALL_KLD for "some" compatibility with FreeBSD ports. It's basically INSTALL_SCRIPT
Modified Files:
--------------
mports/Mk:
bsd.mport.mk (r1.93 -> r1.94)
-------------- next part --------------
Index: bsd.mport.mk
===================================================================
RCS file: /home/cvs/mports/Mk/bsd.mport.mk,v
retrieving revision 1.93
retrieving revision 1.94
diff -L Mk/bsd.mport.mk -L Mk/bsd.mport.mk -u -r1.93 -r1.94
--- Mk/bsd.mport.mk
+++ Mk/bsd.mport.mk
@@ -590,10 +590,11 @@
# - 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_SCRIPT
# - A command to install executable scripts.
-# INSTALL_DATA - A command to install sharable data.
-# INSTALL_MAN - A command to install manpages. May or not compress,
+# INSTALL_DATA - A command to install sharable data.
+# INSTALL_MAN - A command to install manpages. May or not compress,
# depending on the value of MANCOMPRESSED (see below).
#
# Boolean to control whether manpages are installed.
@@ -2125,6 +2126,8 @@
# A few aliases for *-install targets
INSTALL_PROGRAM= \
${INSTALL} ${COPY} ${STRIP} ${_BINOWNGRP} -m ${BINMODE}
+INSTALL_KLD= \
+ ${INSTALL} ${COPY} ${_BINOWNGRP} -m ${BINMODE}
INSTALL_SCRIPT= \
${INSTALL} ${COPY} ${_BINOWNGRP} -m ${BINMODE}
INSTALL_DATA= \
More information about the Midnightbsd-cvs
mailing list