pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/emulators/compat30 Fixed typo in OS_VERSION checks.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/c6a32ff9d311
branches:  trunk
changeset: 373604:c6a32ff9d311
user:      rillig <rillig%pkgsrc.org@localhost>
date:      Sun Jan 07 11:39:36 2018 +0000

description:
Fixed typo in OS_VERSION checks.

This doesn't influence anything since NetBSD-4.90 has never been released.
Still it produced a pkglint warning.

diffstat:

 emulators/compat30/Makefile |  8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

diffs (22 lines):

diff -r f69b9fc68b73 -r c6a32ff9d311 emulators/compat30/Makefile
--- a/emulators/compat30/Makefile       Sun Jan 07 11:26:04 2018 +0000
+++ b/emulators/compat30/Makefile       Sun Jan 07 11:39:36 2018 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.7 2017/12/24 09:43:56 wiz Exp $
+# $NetBSD: Makefile,v 1.8 2018/01/07 11:39:36 rillig Exp $
 
 COMPAT_PKG=            compat30        # for compat_netbsd/Makefile.common
 NETBSD_VERSION=                3.0
@@ -45,8 +45,10 @@
 # compat30-extras package to supply shared libraries missing from compat30.
 #
 .elif (${EMUL_ARCH} == "vax") && \
-      (!empty(OS_VERSION:M3.99.*) || !empty(OS_VERSION:M4.[0-9]) || \
-       !empty(OS_VERSION:M4.[1-8][0-9].*) || empty(NetBSD-4.9[0-8].*))
+      (!empty(OS_VERSION:M3.99.*) || \
+       !empty(OS_VERSION:M4.[0-9]) || \
+       !empty(OS_VERSION:M4.[1-8][0-9].*) || \
+       !empty(OS_VERSION:M4.9[0-8].*))
 DEPENDS+=      compat30-extras-${COMPAT_VERSION}{,nb*}:../../emulators/compat30-extras
 #
 # We need to depend on the compat40 package to supply shared libraries



Home | Main Index | Thread Index | Old Index