diff options
author | ceri <ceri@FreeBSD.org> | 2006-10-15 13:51:49 +0000 |
---|---|---|
committer | ceri <ceri@FreeBSD.org> | 2006-10-15 13:51:49 +0000 |
commit | a00c4e62c6ca61dd5b5de8eb92253367cc1b7ddd (patch) | |
tree | 3afc4334fcc06e55d6571cda95af8e82e5ba7d66 /sbin/idmapd | |
parent | 0f61a909d68213ac67309a956e4eb90379de002d (diff) | |
download | FreeBSD-src-a00c4e62c6ca61dd5b5de8eb92253367cc1b7ddd.zip FreeBSD-src-a00c4e62c6ca61dd5b5de8eb92253367cc1b7ddd.tar.gz |
.PATH isn't necessary here.
Remove hardcoded path to /usr/src/sys.
Diffstat (limited to 'sbin/idmapd')
-rw-r--r-- | sbin/idmapd/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sbin/idmapd/Makefile b/sbin/idmapd/Makefile index 462bc59..8206e0d 100644 --- a/sbin/idmapd/Makefile +++ b/sbin/idmapd/Makefile @@ -5,9 +5,7 @@ PROG= idmapd MAN= idmapd.8 -CFLAGS+= -DNFS -I/usr/src/sys +CFLAGS+= -DNFS -I${.CURDIR}/../../sys WARNS?= 2 -.PATH: - .include <bsd.prog.mk> |