diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2000-06-30 08:12:40 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2000-06-30 08:12:40 +0000 |
commit | afd6b6f4e100ed1268ed10570d8d798c8a362b93 (patch) | |
tree | 91a2909258bbdb9f149f1d3c6df158fb4ebb19b9 /shells/zsh-devel/Makefile | |
parent | f671b349873116163e7b8dd5431826f80d28c11d (diff) |
Get rid of the workaround regarding the libzsh-3.1.x.so generation, as
zsh 3.1.9 was found to generate it also on 3-STABLE.
This should fix the breakage of the package for 3-STABLE.
Pointed out by: Masayuki FUKUI <fukui@sonic.nm.fujitsu.co.jp>
Reviewed by: shige (Maintainer)
Notes
Notes:
svn path=/head/; revision=30010
Diffstat (limited to 'shells/zsh-devel/Makefile')
-rw-r--r-- | shells/zsh-devel/Makefile | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/shells/zsh-devel/Makefile b/shells/zsh-devel/Makefile index 49770c42e945..6288639a5df5 100644 --- a/shells/zsh-devel/Makefile +++ b/shells/zsh-devel/Makefile @@ -37,16 +37,7 @@ INSTALL_TARGET= install install.info MAN1= zsh.1 zshbuiltins.1 zshcompctl.1 zshexpn.1 zshmisc.1 \ zshoptions.1 zshall.1 zshparam.1 zshzle.1 zshmodules.1 \ zshzftpsys.1 zshcompsys.1 zshcompwid.1 -PLIST_SUB= ZSH_VER="${ZSH_VER}" ZSHFUNC_SUBDIR="${ZSHFUNC_SUBDIR}" \ - LIBZSH="${LIBZSH}" - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} < 400013 -LIBZSH= @comment lib/zsh/libzsh-${ZSH_VER}.so -.else -LIBZSH= lib/zsh/libzsh-${ZSH_VER}.so -.endif +PLIST_SUB= ZSH_VER="${ZSH_VER}" ZSHFUNC_SUBDIR="${ZSHFUNC_SUBDIR}" # If you want to build a static binary, uncomment the following line #LDFLAGS+=-static @@ -79,4 +70,4 @@ post-install: ${ECHO} ${PREFIX}/bin/zsh) > /etc/shells @${RM} /etc/shells.bak -.include <bsd.port.post.mk> +.include <bsd.port.mk> |