diff options
author | gordon <gordon@FreeBSD.org> | 2003-07-01 23:10:39 +0000 |
---|---|---|
committer | gordon <gordon@FreeBSD.org> | 2003-07-01 23:10:39 +0000 |
commit | 7616d9bb52a5ba8451e78ffba22269aeb1acc13d (patch) | |
tree | 5ba5548ce49d3827fa831e5d551f43847eb3b033 /Makefile.inc1 | |
parent | 3e14cb60b5a17d8029493c8437857bee4ea0dcbf (diff) | |
download | FreeBSD-src-7616d9bb52a5ba8451e78ffba22269aeb1acc13d.zip FreeBSD-src-7616d9bb52a5ba8451e78ffba22269aeb1acc13d.tar.gz |
Switch the logic on the /rescue bits from NO_RESCUE to RESCUE, at least
until there is a fix for cross building available.
Diffstat (limited to 'Makefile.inc1')
-rw-r--r-- | Makefile.inc1 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1 index 39f7881..7608f2b 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -66,7 +66,7 @@ SUBDIR+= kerberos5 .if exists(${.CURDIR}/libexec) SUBDIR+= libexec .endif -.if exists(${.CURDIR}/rescue) && !defined(NO_RESCUE) +.if exists(${.CURDIR}/rescue) && defined(RESCUE) SUBDIR+= rescue .endif .if exists(${.CURDIR}/sbin) |