diff options
author | Bryan Drewery <bdrewery@FreeBSD.org> | 2015-12-04 00:29:40 +0000 |
---|---|---|
committer | Bryan Drewery <bdrewery@FreeBSD.org> | 2015-12-04 00:29:40 +0000 |
commit | fe893d53e468da5b33f7986e619eaa3bb34dccda (patch) | |
tree | 0d87fb6b066f4f2d679287c1317bfd15d61d56c8 /cddl | |
parent | 6d7e2893188e552a8c542278146ca2e588aae640 (diff) | |
download | src-fe893d53e468da5b33f7986e619eaa3bb34dccda.tar.gz src-fe893d53e468da5b33f7986e619eaa3bb34dccda.zip |
Simplify the LIBRARIES_ONLY hacks so that install: is not needed here.
This uses the same pattern that I applied to the other cases of this in
the csu directories.
Sponsored by: EMC / Isilon Storage Division
Notes
Notes:
svn path=/head/; revision=291729
Diffstat (limited to 'cddl')
-rw-r--r-- | cddl/lib/drti/Makefile | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/cddl/lib/drti/Makefile b/cddl/lib/drti/Makefile index c715809708f5..b62d2c22c91b 100644 --- a/cddl/lib/drti/Makefile +++ b/cddl/lib/drti/Makefile @@ -9,8 +9,8 @@ FILESGRP= ${LIBGRP} FILESMODE= ${LIBMODE} FILESDIR= ${LIBDIR}/dtrace CLEANFILES= ${FILES} -LIB= drti-dummy -INTERNALLIB= +# These FILES qualify as libraries for the purpose of LIBRARIES_ONLY. +.undef LIBRARIES_ONLY CFLAGS+= -I${.CURDIR}/../../../sys/cddl/compat/opensolaris \ -I${.CURDIR}/../../../cddl/compat/opensolaris/include \ @@ -20,10 +20,4 @@ CFLAGS+= -I${.CURDIR}/../../../sys/cddl/compat/opensolaris \ -I${OPENSOLARIS_SYS_DISTDIR}/uts/common \ -DPIC ${PICFLAG} -.if make(install) && defined(LIBRARIES_ONLY) -install: - ${INSTALL} -o ${FILESOWN} -g ${FILESGRP} -m ${FILESMODE} \ - ${FILES} ${DESTDIR}${FILESDIR} -.endif - .include <bsd.lib.mk> |