summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authorgdt <gdt@pkgsrc.org>2022-05-03 23:38:38 +0000
committergdt <gdt@pkgsrc.org>2022-05-03 23:38:38 +0000
commit21af9cf6e45e14db93628f416ea5ef8a6327fd30 (patch)
treee8aa7045eddb7a201acef30bd9b450998a78e53e /lang
parente59a51765b1c7baa6200a1fbb5daa3f728eff43b (diff)
downloadpkgsrc-21af9cf6e45e14db93628f416ea5ef8a6327fd30.tar.gz
lang/tcl-expect: Quote version per pkglint
This is almost certainly just a cleanup; OS_VERSION values are strings, not numbers.
Diffstat (limited to 'lang')
-rw-r--r--lang/tcl-expect/Makefile.common4
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/tcl-expect/Makefile.common b/lang/tcl-expect/Makefile.common
index b1232f30fca..a665f426f79 100644
--- a/lang/tcl-expect/Makefile.common
+++ b/lang/tcl-expect/Makefile.common
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.12 2020/03/20 11:57:56 nia Exp $
+# $NetBSD: Makefile.common,v 1.13 2022/05/03 23:38:38 gdt Exp $
DISTNAME= expect${EXPECT_FNAME}
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=expect/}
@@ -23,7 +23,7 @@ PLIST_SUBST+= BASEVER=${EXPECT_FNAME}
INSTALL_UNSTRIPPED= yes
# on IRIX 5.3 inttypes.h and sys/types.h are known to conflict
-.if ${OPSYS} == "IRIX" && ${OS_VERSION} == 5.3
+.if ${OPSYS} == "IRIX" && ${OS_VERSION} == "5.3"
CONFIGURE_ENV+= ac_cv_header_inttypes_h="no"
.endif