diff options
author | dholland <dholland@pkgsrc.org> | 2022-05-23 03:18:45 +0000 |
---|---|---|
committer | dholland <dholland@pkgsrc.org> | 2022-05-23 03:18:45 +0000 |
commit | 2409ab07b2c0b49ef460b6ce19483c8be770cc50 (patch) | |
tree | 16d97197d4ee23ce3c6f41b302069cef356ccdf4 /comms | |
parent | b0898db4b47dab33fd99df9111a9e6140cc20fe3 (diff) | |
download | pkgsrc-2409ab07b2c0b49ef460b6ce19483c8be770cc50.tar.gz |
comms/kermit: add IRIX target selection
Similar to what was suggested in PR 26800 by Georg Schwarz.
Untested. Testing requires IRIX :-)
Diffstat (limited to 'comms')
-rw-r--r-- | comms/kermit/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/comms/kermit/Makefile b/comms/kermit/Makefile index 68c5b0525e6..f9fcd0a9296 100644 --- a/comms/kermit/Makefile +++ b/comms/kermit/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.96 2021/10/21 07:46:33 wiz Exp $ +# $NetBSD: Makefile,v 1.97 2022/05/23 03:18:45 dholland Exp $ DISTNAME= cku302 PKGNAME= kermit-9.0.302 @@ -63,6 +63,8 @@ MAKE_ENV+= HAVE_CURSES=-DCK_NCURSES . endif .elif ${OPSYS} == "SunOS" BUILD_TARGET_OPSYS= solaris11g +.elif ${OPSYS} == "IRIX" +BUILD_TARGET_OPSYS= irix${OS_VERSION:C/\.//g} .else BUILD_TARGET_OPSYS= netbsd .endif |