diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2015-06-15 15:34:20 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2015-06-15 15:34:20 +0000 |
commit | 4232f826683298e85d469c0ef17259cecd13b2c7 (patch) | |
tree | 154d3d5efcf71ba40bf173188459e5f3186f27ec /cddl/lib/Makefile.inc | |
parent | 2f1653808a72224693d36d82e415f2f7bbbed547 (diff) | |
download | src-4232f826683298e85d469c0ef17259cecd13b2c7.tar.gz src-4232f826683298e85d469c0ef17259cecd13b2c7.zip |
Enforce overwritting SHLIBDIR
Since METAMODE has been added, sys.mk loads bsd.mkopt.mk which ends load loading
bsd.own.mk which then defines SHLIBDIR before all the Makefile.inc everywhere.
This makes /lib being populated again.
Reported by: many
Notes
Notes:
svn path=/head/; revision=284417
Diffstat (limited to 'cddl/lib/Makefile.inc')
-rw-r--r-- | cddl/lib/Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cddl/lib/Makefile.inc b/cddl/lib/Makefile.inc index 8f9af1d17e9d..d8f6c20f1649 100644 --- a/cddl/lib/Makefile.inc +++ b/cddl/lib/Makefile.inc @@ -1,6 +1,6 @@ # $FreeBSD$ -SHLIBDIR?= /lib +SHLIBDIR= /lib SHLIB_MAJOR?= 2 .include "../Makefile.inc" |