diff options
author | asami <asami@FreeBSD.org> | 1997-05-23 08:24:00 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1997-05-23 08:24:00 +0000 |
commit | 68323c9eb2b0845172f6e908768be47f4be888f5 (patch) | |
tree | 1d6dbb019349711e075a60e761b56ef7b9ce468c /lib/librpcsvc | |
parent | 4637ebc72a66661613085993f33f9282b2fca030 (diff) | |
download | FreeBSD-src-68323c9eb2b0845172f6e908768be47f4be888f5.zip FreeBSD-src-68323c9eb2b0845172f6e908768be47f4be888f5.tar.gz |
Use ${DESTDIR} correctly in front of absolute paths.
Diffstat (limited to 'lib/librpcsvc')
-rw-r--r-- | lib/librpcsvc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/librpcsvc/Makefile b/lib/librpcsvc/Makefile index 6e96c61..3680d0a 100644 --- a/lib/librpcsvc/Makefile +++ b/lib/librpcsvc/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 5.10 (Berkeley) 6/24/90 -# $Id$ +# $Id: Makefile,v 1.8 1997/02/22 15:07:51 peter Exp $ .PATH: ${DESTDIR}/usr/include/rpcsvc @@ -10,7 +10,7 @@ RPCSRCS= klm_prot.x mount.x nfs_prot.x nlm_prot.x rex.x rnusers.x \ RPCCOM = rpcgen -INCDIRS= -I/usr/include/rpcsvc +INCDIRS= -I${DESTDIR}/usr/include/rpcsvc CFLAGS+= ${INCDIRS} SRCS= ${RPCSRCS:R:S/$/_xdr.c/g} |