summaryrefslogtreecommitdiff
path: root/rescue/librescue
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2017-03-12 18:59:09 +0000
committerWarner Losh <imp@FreeBSD.org>2017-03-12 18:59:09 +0000
commit23583802cf9a4384dbe37f60109da5bf344d7e7f (patch)
tree8f0c2e73dbbe4eff8b45cf7fcc4f47fdd3880d60 /rescue/librescue
parent484482b8ad59a8c68aaa1f0551a983c10b983a22 (diff)
downloadsrc-test2-23583802cf9a4384dbe37f60109da5bf344d7e7f.tar.gz
src-test2-23583802cf9a4384dbe37f60109da5bf344d7e7f.zip
Make rescue use SRCTOP
Transition to SRCTOP. Also, standardize of {} instead of () variable deliminators while I'm here. Differential Revision: https://reviews.freebsd.org/D9932 Sponsored by: Netflix Silence On: arch@ (twice)
Notes
Notes: svn path=/head/; revision=315174
Diffstat (limited to 'rescue/librescue')
-rw-r--r--rescue/librescue/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/rescue/librescue/Makefile b/rescue/librescue/Makefile
index 4ca6db923c88..e7147d8e67ce 100644
--- a/rescue/librescue/Makefile
+++ b/rescue/librescue/Makefile
@@ -13,10 +13,10 @@ MK_SSP= no
# This library should never be installed, and isn't even linked
# with in the normal way. (See ../rescue/Makefile for details.)
-.PATH: ${.CURDIR}/../../lib/libc/gen \
- ${.CURDIR}/../../lib/libc/net \
- ${.CURDIR}/../../lib/libc/stdlib \
- ${.CURDIR}/../../lib/libutil
+.PATH: ${SRCTOP}/lib/libc/gen \
+ ${SRCTOP}/lib/libc/net \
+ ${SRCTOP}/lib/libc/stdlib \
+ ${SRCTOP}/lib/libutil
LIB= rescue
INTERNALLIB= # Don't install this library
@@ -42,6 +42,6 @@ CFLAGS+= -DYP
.if ${MK_HESIOD} != "no"
CFLAGS+= -DHESIOD
.endif
-CFLAGS+= -I${.CURDIR}/../../lib/libc/include
+CFLAGS+= -I${SRCTOP}/lib/libc/include
.include <bsd.lib.mk>