pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/emulators/compat30
Module Name: pkgsrc
Committed By: rillig
Date: Sun Jan 7 11:39:36 UTC 2018
Modified Files:
pkgsrc/emulators/compat30: Makefile
Log Message:
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.
To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 pkgsrc/emulators/compat30/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/emulators/compat30/Makefile
diff -u pkgsrc/emulators/compat30/Makefile:1.7 pkgsrc/emulators/compat30/Makefile:1.8
--- pkgsrc/emulators/compat30/Makefile:1.7 Sun Dec 24 09:43:56 2017
+++ pkgsrc/emulators/compat30/Makefile Sun Jan 7 11:39:36 2018
@@ -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 @@ DEPENDS+= netbsd32_compat40>=4.0:../../e
# 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