From f7fa0cbd70e02ecb0c1775218703454d7207dedd Mon Sep 17 00:00:00 2001 From: Ruslan Ermilov Date: Wed, 30 Apr 2003 07:54:39 +0000 Subject: [PATCH] The including makefile's directory is tried first for .include "...". --- secure/lib/Makefile.inc | 2 +- secure/libexec/Makefile.inc | 4 ++-- secure/usr.bin/Makefile.inc | 2 +- secure/usr.sbin/Makefile.inc | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/secure/lib/Makefile.inc b/secure/lib/Makefile.inc index 1410b215761e..002a3f70ef33 100644 --- a/secure/lib/Makefile.inc +++ b/secure/lib/Makefile.inc @@ -1,6 +1,6 @@ # $FreeBSD$ -.include "${.CURDIR}/../../Makefile.inc" +.include "../Makefile.inc" .if exists(${.CURDIR}/../../../lib/Makefile.inc) .include "${.CURDIR}/../../../lib/Makefile.inc" .endif diff --git a/secure/libexec/Makefile.inc b/secure/libexec/Makefile.inc index 2b094361f75f..6d620e245bff 100644 --- a/secure/libexec/Makefile.inc +++ b/secure/libexec/Makefile.inc @@ -1,5 +1,5 @@ -# $FreeBSD$ +# $FreeBSD$ BINDIR?= /usr/libexec -.include "${.CURDIR}/../../Makefile.inc" +.include "../Makefile.inc" diff --git a/secure/usr.bin/Makefile.inc b/secure/usr.bin/Makefile.inc index de35b7828aab..4cec6fe01a45 100644 --- a/secure/usr.bin/Makefile.inc +++ b/secure/usr.bin/Makefile.inc @@ -2,4 +2,4 @@ BINDIR?= /usr/bin -.include "${.CURDIR}/../../Makefile.inc" +.include "../Makefile.inc" diff --git a/secure/usr.sbin/Makefile.inc b/secure/usr.sbin/Makefile.inc index 1495232d7438..282198ea8d8c 100644 --- a/secure/usr.sbin/Makefile.inc +++ b/secure/usr.sbin/Makefile.inc @@ -2,4 +2,4 @@ BINDIR?= /usr/sbin -.include "${.CURDIR}/../../Makefile.inc" +.include "../Makefile.inc"