diff options
author | pjd <pjd@FreeBSD.org> | 2004-05-26 17:51:53 +0000 |
---|---|---|
committer | pjd <pjd@FreeBSD.org> | 2004-05-26 17:51:53 +0000 |
commit | a040fe460a58510f8669b5f6bca33e03db8bdfa0 (patch) | |
tree | 5b4de6c667e6c00aca4c2f6fdc91e3e772050a87 /sbin/geom | |
parent | 19d2b54248d0b8b5527849763f5feedb30cb9f59 (diff) | |
download | FreeBSD-src-a040fe460a58510f8669b5f6bca33e03db8bdfa0.zip FreeBSD-src-a040fe460a58510f8669b5f6bca33e03db8bdfa0.tar.gz |
Fix order.
Diffstat (limited to 'sbin/geom')
-rw-r--r-- | sbin/geom/core/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/geom/core/Makefile b/sbin/geom/core/Makefile index 2790e04..9c920dd 100644 --- a/sbin/geom/core/Makefile +++ b/sbin/geom/core/Makefile @@ -9,7 +9,7 @@ SRCS= geom.c subr.c CFLAGS+= -DCLASSDIR=\"${CLASSDIR}\" CFLAGS+= -I${.CURDIR}/../../../sys -I${.CURDIR} -I${.CURDIR}/.. -DPADD= ${LIBBSDXML} ${LIBGEOM} ${LIBSBUF} ${LIBUTIL} -LDADD= -lbsdxml -lgeom -lsbuf -lutil +DPADD= ${LIBGEOM} ${LIBSBUF} ${LIBBSDXML} ${LIBUTIL} +LDADD= -lgeom -lsbuf -lbsdxml -lutil .include <bsd.prog.mk> |