summaryrefslogtreecommitdiff
path: root/shells
diff options
context:
space:
mode:
authorsbd <sbd@pkgsrc.org>2013-03-22 08:43:31 +0000
committersbd <sbd@pkgsrc.org>2013-03-22 08:43:31 +0000
commit973956d40cbe13c160a3b2dcfe957a183e5c3bd1 (patch)
tree52b522873e8e88b04e41d57563051266349bc941 /shells
parent68e6a125a39e93a9fd196aebc7cb2c047e3d7e97 (diff)
downloadpkgsrc-973956d40cbe13c160a3b2dcfe957a183e5c3bd1.tar.gz
As jperkin@ has used an "ugly hack" to fix solaris packaging, the same
ugly hack can be used to fix the same problem on Linux.
Diffstat (limited to 'shells')
-rw-r--r--shells/zsh/Makefile.common6
1 files changed, 3 insertions, 3 deletions
diff --git a/shells/zsh/Makefile.common b/shells/zsh/Makefile.common
index a87553b8181..129734a09a7 100644
--- a/shells/zsh/Makefile.common
+++ b/shells/zsh/Makefile.common
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.68 2013/02/18 20:02:38 jperkin Exp $
+# $NetBSD: Makefile.common,v 1.69 2013/03/22 08:43:31 sbd Exp $
# used by shells/zsh/Makefile
# used by shells/zsh-current/Makefile
@@ -86,7 +86,7 @@ _ZSH_OPSYS_VARS.notcsetpgrp= --without-tcsetpgrp
### terminfo
CHECK_BUILTIN.terminfo= yes
.include "../../mk/terminfo.builtin.mk"
-.if !empty(USE_BUILTIN.terminfo:M[Yy][Ee][Ss])
+.if !empty(USE_BUILTIN.terminfo:M[Yy][Ee][Ss]) || ${OPSYS} == "Linux"
PLIST.terminfo= yes
.endif
@@ -94,7 +94,7 @@ PLIST.terminfo= yes
.if empty(MACHINE_PLATFORM:MNetBSD-[0-9]*)
CHECK_BUILTIN.curses= yes
.include "../../mk/curses.builtin.mk"
-.if !empty(USE_BUILTIN.curses:M[Yy][Ee][Ss]) || ${OPSYS} == "SunOS"
+.if !empty(USE_BUILTIN.curses:M[Yy][Ee][Ss]) || ${OPSYS} == "SunOS" || ${OPSYS} == "Linux"
PLIST.curses= yes
.endif
.endif