diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2010-12-15 23:24:34 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2010-12-15 23:24:34 +0000 |
commit | 7838c4d1c11914adae68cbeb85dd0a7ab867aa48 (patch) | |
tree | 1aa69fd70bac01b1a68524b4d87588c66af84c76 /sbin/geom/class/multipath/Makefile | |
parent | 8c9cef57acba1a5e8e9525fe88702ef356fbe437 (diff) | |
download | src-7838c4d1c11914adae68cbeb85dd0a7ab867aa48.tar.gz src-7838c4d1c11914adae68cbeb85dd0a7ab867aa48.zip |
Rename the generic "CLASS" to the more specific "GEOM_CLASS".
While I'm here remove redundancy and inconsistencies.
Obtained from: Juniper Networks
Notes
Notes:
svn path=/head/; revision=216468
Diffstat (limited to 'sbin/geom/class/multipath/Makefile')
-rw-r--r-- | sbin/geom/class/multipath/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sbin/geom/class/multipath/Makefile b/sbin/geom/class/multipath/Makefile index b4eb7837e8eb..ff40fe9faa32 100644 --- a/sbin/geom/class/multipath/Makefile +++ b/sbin/geom/class/multipath/Makefile @@ -1,8 +1,9 @@ # $FreeBSD$ .PATH: ${.CURDIR}/../../misc -CLASS= multipath -.include <bsd.lib.mk> +GEOM_CLASS= multipath CFLAGS+= -I${.CURDIR}/../../../../sys + +.include <bsd.lib.mk> |