diff options
author | ru <ru@FreeBSD.org> | 2003-03-12 14:32:46 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2003-03-12 14:32:46 +0000 |
commit | 35ab69e7c129ca89a69f81666ee5f8a3934bc7ec (patch) | |
tree | 27e7a65bad471b6248645c3a98408f48fcf37896 /sys/modules/Makefile | |
parent | d3c68089ef6bf60984fde802c8a5bfe8f3c7ff39 (diff) | |
download | FreeBSD-src-35ab69e7c129ca89a69f81666ee5f8a3934bc7ec.zip FreeBSD-src-35ab69e7c129ca89a69f81666ee5f8a3934bc7ec.tar.gz |
Simplify the assignment statement.
Diffstat (limited to 'sys/modules/Makefile')
-rw-r--r-- | sys/modules/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile index 51b3c7b..80eb5c2 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -286,7 +286,7 @@ SUBDIR=${MODULES_OVERRIDE} # Calling kldxref(8) for each module is expensive. .if !defined(NO_XREF) -.MAKEFLAGS:= ${.MAKEFLAGS} -DNO_XREF +.MAKEFLAGS+= -DNO_XREF afterinstall: @if type kldxref >/dev/null 2>&1; then \ ${ECHO} kldxref ${DESTDIR}${KMODDIR}; \ |