diff options
author | wiz <wiz> | 2000-02-05 18:17:51 +0000 |
---|---|---|
committer | wiz <wiz> | 2000-02-05 18:17:51 +0000 |
commit | 982bc6c01a570ccc5eebe9102daf599979b89d66 (patch) | |
tree | 324d5fbef5b78a1c8a9dda6c41cd067a8501484f | |
parent | 2e6cff3d0497e90da0eee0ed2991f0238382bab9 (diff) | |
download | pkgsrc-982bc6c01a570ccc5eebe9102daf599979b89d66.tar.gz |
replace true & false by ${TRUE} & ${FALSE}
-rw-r--r-- | archivers/rar/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/archivers/rar/Makefile b/archivers/rar/Makefile index 496c6193acc..c8161c570a7 100644 --- a/archivers/rar/Makefile +++ b/archivers/rar/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.22 2000/01/11 00:20:54 wiz Exp $ +# $NetBSD: Makefile,v 1.23 2000/02/05 18:17:51 wiz Exp $ # FreeBSD Id: Makefile,v 1.7 1997/08/10 22:31:27 fenner Exp # @@ -26,14 +26,14 @@ KERNEL= /`sysctl -n machdep.booted_kernel` pre-extract: @if (${NM} ${KERNEL} | ${GREP} -q compat_12 && \ ${NM} ${KERNEL} | ${GREP} -q exec_nomid && \ - ${NM} ${KERNEL} | ${GREP} -q exec_aout); then true; \ + ${NM} ${KERNEL} | ${GREP} -q exec_aout); then ${TRUE}; \ else \ ${ECHO} "****************************************************************";\ ${ECHO} Make can not proceed! In order to extract \(and run\); \ ${ECHO} this package, you must have have booted from a kernel; \ ${ECHO} with options COMPAT_NOMID and COMPAT_12 \(and EXEC_AOUT, if ELF\).; \ ${ECHO} "****************************************************************";\ - false; \ + ${FALSE}; \ fi @${CHMOD} a+x ${DISTDIR}/${DISTFILES} |